/* * linux/arch/arm/mach-nuc93x/dev.c * * Copyright (C) 2009 Nuvoton corporation. * * Wan ZongShun * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation;version 2 of the License. * */ #include #include #include #include #include #include #include #include #include #include #include #include "cpu.h" /*Here should be your evb resourse,such as LCD*/ static struct platform_device *nuc93x_public_dev[] __initdata = { &nuc93x_serial_device, }; /* Provide adding specific CPU platform devices API */ void __init nuc93x_board_init(struct platform_device **device, int size) { platform_add_devices(device, size); platform_add_devices(nuc93x_public_dev, ARRAY_SIZE(nuc93x_public_dev)); }