adm5120: nuke adm5120_mach_type, use mips_machtype instead
authorGabor Juhos <juhosg@openwrt.org>
Sat, 2 Jan 2010 15:07:45 +0000 (15:07 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Sat, 2 Jan 2010 15:07:45 +0000 (15:07 +0000)
SVN-Revision: 19003

target/linux/adm5120/files/arch/mips/adm5120/common/adm5120.c
target/linux/adm5120/files/arch/mips/adm5120/common/prom.c
target/linux/adm5120/files/arch/mips/adm5120/common/setup.c
target/linux/adm5120/files/arch/mips/include/asm/mach-adm5120/adm5120_info.h

index 3b969ce6e8828a6727208f105034647f0b8e5e11..28388342c63c1f71c519eabce1fffd398b1a9aca 100644 (file)
@@ -12,7 +12,6 @@
 #include <linux/init.h>
 #include <linux/io.h>
 
-//#include <asm/bootinfo.h>
 #include <asm/addrspace.h>
 
 #include <asm/mach-adm5120/adm5120_info.h>
@@ -24,7 +23,6 @@ unsigned int adm5120_revision;
 unsigned int adm5120_package;
 unsigned int adm5120_nand_boot;
 unsigned long adm5120_speed;
-unsigned long adm5120_mach_type;
 
 /*
  * CPU settings detection
index adc9e8c71a3e3c734e3afb7ec818995feeb7e272..81ba365a0ee5ae07b582439f1ccb7db57bb182d3 100644 (file)
@@ -202,35 +202,35 @@ static void __init prom_detect_machtype(void)
 {
        if (bootbase_present()) {
                adm5120_prom_type = ADM5120_PROM_BOOTBASE;
-               adm5120_mach_type = detect_machtype_bootbase();
+               mips_machtype = detect_machtype_bootbase();
                return;
        }
 
        if (cfe_present()) {
                adm5120_prom_type = ADM5120_PROM_CFE;
-               adm5120_mach_type = detect_machtype_cfe();
+               mips_machtype = detect_machtype_cfe();
                return;
        }
 
        if (myloader_present()) {
                adm5120_prom_type = ADM5120_PROM_MYLOADER;
-               adm5120_mach_type = detect_machtype_myloader();
+               mips_machtype = detect_machtype_myloader();
                return;
        }
 
        if (routerboot_present()) {
                adm5120_prom_type = ADM5120_PROM_ROUTERBOOT;
-               adm5120_mach_type = detect_machtype_routerboot();
+               mips_machtype = detect_machtype_routerboot();
                return;
        }
 
        if (generic_prom_present()) {
                adm5120_prom_type = ADM5120_PROM_GENERIC;
-               adm5120_mach_type = detect_machtype_generic();
+               mips_machtype = detect_machtype_generic();
                return;
        }
 
-       adm5120_mach_type = MACH_ADM5120_GENERIC;
+       mips_machtype = MACH_ADM5120_GENERIC;
 }
 
 #ifdef CONFIG_IMAGE_CMDLINE_HACK
index 271dfaa6b401a024a17a8e0aee5f450b38d351bb..843a616bbee8b4303c5144b096dca87fa73e0915 100644 (file)
@@ -21,6 +21,7 @@
 #include <linux/kernel.h>
 #include <linux/io.h>
 
+#include <asm/bootinfo.h>
 #include <asm/reboot.h>
 #include <asm/time.h>
 #include <asm/mips_machine.h>
@@ -106,7 +107,7 @@ static int __init adm5120_board_setup(void)
 {
        adm5120_gpio_init();
 
-       mips_machine_setup(adm5120_mach_type);
+       mips_machine_setup(mips_machtype);
 
        return 0;
 }
index 7cc18ebd4edec18b199a6536d7f68458ad773c42..af0cc30ea736654254cd371a1b1f6a55e5f754fb 100644 (file)
@@ -37,8 +37,6 @@ extern unsigned int adm5120_package;
 
 extern unsigned long adm5120_memsize;
 
-extern unsigned long adm5120_mach_type;
-
 #define MACH_ADM5120_GENERIC   0       /* Generic board */
 #define MACH_ADM5120_WP54G_WRT 1       /* Compex WP54G-WRT */
 #define MACH_ADM5120_WP54      2       /* Compex WP54G/WP54AG/WPP54G/WPP54AG */