[ramips] share machine registration code
[openwrt.git] / target / linux / ramips / files / arch / mips / ralink / rt288x / setup.c
index 920f44a..8dc4b3c 100644 (file)
@@ -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);
@@ -73,11 +71,6 @@ static void __init rt288x_early_serial_setup(void)
                        err);
 }
 
-const char *get_system_type(void)
-{
-       return rt288x_sys_type;
-}
-
 unsigned int __cpuinit get_c0_compare_irq(void)
 {
        return CP0_LEGACY_COMPARE_IRQ;
@@ -91,7 +84,7 @@ void __init ramips_soc_setup(void)
        rt288x_detect_sys_type();
        rt288x_detect_sys_freq();
 
-       printk(KERN_INFO "%s running at %lu.%02lu MHz\n", get_system_type(),
+       printk(KERN_INFO "%s running at %lu.%02lu MHz\n", ramips_sys_type,
                rt288x_cpu_freq / 1000000,
                (rt288x_cpu_freq % 1000000) * 100 / 1000000);
 
@@ -106,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);
This page took 0.025883 seconds and 4 git commands to generate.