diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 20:24:30 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 20:24:30 -0700 |
commit | 510597e26e2a072e2d46ea5bc57feaf385e37f70 (patch) | |
tree | 5ffe90e6569481506b06fb6d6a409655fac4f7f6 /arch/arm/mach-nuc93x/dev.c | |
parent | cd9a0b6bd67ec372b0ef3cb2abe26974f888b956 (diff) | |
parent | 4702abd3f9728893ad5b0f4389e1902588510459 (diff) | |
download | op-kernel-dev-510597e26e2a072e2d46ea5bc57feaf385e37f70.zip op-kernel-dev-510597e26e2a072e2d46ea5bc57feaf385e37f70.tar.gz |
Merge branch 'next/deletion' of git://git.linaro.org/people/arnd/arm-soc
* 'next/deletion' of git://git.linaro.org/people/arnd/arm-soc:
ARM: mach-nuc93x: delete
Fix up trivial delete/edit conflicts in
arch/arm/mach-nuc93x/{Makefile.boot,mach-nuc932evb.c,time.c}
Diffstat (limited to 'arch/arm/mach-nuc93x/dev.c')
-rw-r--r-- | arch/arm/mach-nuc93x/dev.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/arch/arm/mach-nuc93x/dev.c b/arch/arm/mach-nuc93x/dev.c deleted file mode 100644 index a962ae9..0000000 --- a/arch/arm/mach-nuc93x/dev.c +++ /dev/null @@ -1,42 +0,0 @@ -/* - * linux/arch/arm/mach-nuc93x/dev.c - * - * Copyright (C) 2009 Nuvoton corporation. - * - * Wan ZongShun <mcuos.com@gmail.com> - * - * 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 <linux/kernel.h> -#include <linux/types.h> -#include <linux/interrupt.h> -#include <linux/list.h> -#include <linux/timer.h> -#include <linux/init.h> -#include <linux/platform_device.h> - -#include <asm/mach/arch.h> -#include <asm/mach/map.h> -#include <asm/mach/irq.h> -#include <asm/mach-types.h> - -#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)); -} - |