diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-31 18:53:34 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-31 18:53:34 +0000 |
commit | be7ba8de2fdef858152092df620fd82981659d50 (patch) | |
tree | 2971914b5bc003f8c4c869f601dfa41806714fb9 /target/linux/ramips/files/arch/mips/ralink/rt288x | |
parent | 789ea10d57657ce479bbdf3d0e2dd9264510faaa (diff) |
[ramips] share machine registration code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17456 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/files/arch/mips/ralink/rt288x')
4 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/Makefile b/target/linux/ramips/files/arch/mips/ralink/rt288x/Makefile index c8c9712d5a..fc06fa4796 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt288x/Makefile +++ b/target/linux/ramips/files/arch/mips/ralink/rt288x/Makefile @@ -11,5 +11,3 @@ obj-y := prom.o irq.o setup.o rt288x.o devices.o obj-$(CONFIG_EARLY_PRINTK) += early_printk.o - -obj-$(CONFIG_RT288X_MACH_GENERIC) += mach-generic.o diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-generic.c b/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-generic.c deleted file mode 100644 index e4f3830a58..0000000000 --- a/target/linux/ramips/files/arch/mips/ralink/rt288x/mach-generic.c +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Generic RT288x machine setup - * - * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org> - * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published - * by the Free Software Foundation. - */ - -#include <linux/init.h> - -#include <asm/mach-ralink/rt288x.h> -#include <asm/mips_machine.h> - -static void __init rt288x_generic_init(void) -{ -} - -MIPS_MACHINE(RT288X_MACH_GENERIC, "Generic RT288x board", rt288x_generic_init); diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/prom.c b/target/linux/ramips/files/arch/mips/ralink/rt288x/prom.c index 80ef719e0c..8becfc92ee 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt288x/prom.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt288x/prom.c @@ -26,8 +26,6 @@ void __init prom_init(void) "fw_arg2=%08x, fw_arg3=%08x\n", (unsigned int)fw_arg0, (unsigned int)fw_arg1, (unsigned int)fw_arg2, (unsigned int)fw_arg3); - - rt288x_mach_type = RT288X_MACH_GENERIC; } void __init prom_free_prom_memory(void) diff --git a/target/linux/ramips/files/arch/mips/ralink/rt288x/setup.c b/target/linux/ramips/files/arch/mips/ralink/rt288x/setup.c index 05184f0bd8..8dc4b3c32a 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt288x/setup.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt288x/setup.c @@ -24,8 +24,6 @@ #include <asm/mach-ralink/rt288x.h> #include <asm/mach-ralink/rt288x_regs.h> -unsigned long rt288x_mach_type; - static void rt288x_restart(char *command) { rt288x_sysc_wr(RT2880_RESET_SYSTEM, SYSC_REG_RESET_CTRL); @@ -101,12 +99,3 @@ void __init plat_time_init(void) { mips_hpt_frequency = rt288x_cpu_freq / 2; } - -static int __init rt288x_machine_setup(void) -{ - mips_machine_setup(rt288x_mach_type); - - return 0; -} - -arch_initcall(rt288x_machine_setup); |