Loading...
Note: File does not exist in v6.2.
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (C) 2009 Daniel Mack <daniel@caiaq.de>
4 *
5 * Based on code for mobots boards,
6 * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
7 */
8
9#ifndef __ASM_ARCH_MXC_BOARD_MX31LILLY_H__
10#define __ASM_ARCH_MXC_BOARD_MX31LILLY_H__
11
12#ifndef __ASSEMBLY__
13
14enum mx31lilly_boards {
15 MX31LILLY_NOBOARD = 0,
16 MX31LILLY_DB = 1,
17};
18
19/*
20 * This CPU module needs a baseboard to work. After basic initializing
21 * its own devices, it calls the baseboard's init function.
22 */
23
24extern void mx31lilly_db_init(void);
25
26#endif
27
28#endif /* __ASM_ARCH_MXC_BOARD_MX31LILLY_H__ */