diff options
author | Andrew Lunn <andrew@lunn.ch> | 2014-02-25 18:34:01 +0100 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-02-25 20:32:16 +0000 |
commit | b02b64384696ad13d6a827dc7775489d01b3dfd9 (patch) | |
tree | afdb11754f61b7004c181b2d3f1221a63c7edc4f /arch/arm/mach-mvebu/board.h | |
parent | 1b82af4f1749119fca8e07451223da10d3ca938d (diff) |
ARM: kirkwood: Add HP T5325 thin client
Convert the kirkwood t5325-setup.c to mostly device tree for
mach-mvebu. Part of the audio setup needs to remain in C for the
moment until suitable bindings are designed and implemented. So add
board code, triggered by the compatibility string.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-mvebu/board.h')
-rw-r--r-- | arch/arm/mach-mvebu/board.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/board.h b/arch/arm/mach-mvebu/board.h new file mode 100644 index 000000000000..de7f0a191394 --- /dev/null +++ b/arch/arm/mach-mvebu/board.h @@ -0,0 +1,22 @@ +/* + * Board functions for Marvell System On Chip + * + * Copyright (C) 2014 + * + * Andrew Lunn <andrew@lunn.ch> + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ + +#ifndef __ARCH_MVEBU_BOARD_H +#define __ARCH_MVEBU_BOARD_H + +#ifdef CONFIG_MACH_T5325 +void t5325_init(void); +#else +static inline void t5325_init(void) {}; +#endif + +#endif |