ARM: Kirkwood: Remove platform driver for codec
[deliverable/linux.git] / arch / arm / mach-mvebu / board-t5325.c
1 /*
2 * HP T5325 Board Setup
3 *
4 * Copyright (C) 2014
5 *
6 * Andrew Lunn <andrew@lunn.ch>
7 *
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 */
12
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include "board.h"
17
18 static struct platform_device hp_t5325_audio_device = {
19 .name = "t5325-audio",
20 .id = -1,
21 };
22
23 void __init t5325_init(void)
24 {
25 platform_device_register(&hp_t5325_audio_device);
26 }
This page took 0.05215 seconds and 6 git commands to generate.