Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.3-rc5 25 lines 675 B view raw
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 7static struct resource usbs1_res[] __initdata = { 8 DEFINE_RES_MEM(0xe2800000, 0x2000), 9 DEFINE_RES_IRQ(159), 10}; 11 12static void __init kzm9d_init(void) 13{ 14 board_staging_gic_setup_xlate("arm,cortex-a9-gic", 32); 15 16 if (!board_staging_dt_node_available(usbs1_res, 17 ARRAY_SIZE(usbs1_res))) { 18 board_staging_gic_fixup_resources(usbs1_res, 19 ARRAY_SIZE(usbs1_res)); 20 platform_device_register_simple("emxx_udc", -1, usbs1_res, 21 ARRAY_SIZE(usbs1_res)); 22 } 23} 24 25board_staging("renesas,kzm9d", kzm9d_init);