]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/staging/board/kzm9d.c
staging: board: disable as it breaks the build
[karo-tx-linux.git] / drivers / staging / board / kzm9d.c
1 /* Staging board support for KZM9D. Enable not-yet-DT-capable devices here. */
2
3 #include <linux/kernel.h>
4 #include <linux/platform_device.h>
5 #include "board.h"
6
7 static const struct resource usbs1_res[] __initconst = {
8         DEFINE_RES_MEM(0xe2800000, 0x2000),
9         DEFINE_RES_IRQ(159),
10 };
11
12 static void __init kzm9d_init(void)
13 {
14         if (!board_staging_dt_node_available(usbs1_res, ARRAY_SIZE(usbs1_res)))
15                 platform_device_register_simple("emxx_udc", -1, usbs1_res,
16                                                 ARRAY_SIZE(usbs1_res));
17 }
18
19 board_staging("renesas,kzm9d", kzm9d_init);