[MIPS] remove unused mips_machtype
authorYoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Fri, 26 Oct 2007 13:42:31 +0000 (22:42 +0900)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 29 Jan 2008 10:14:55 +0000 (10:14 +0000)
Removed unused mips_machtype.  These are only set but not used.

Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
18 files changed:
arch/mips/au1000/db1x00/init.c
arch/mips/au1000/mtx-1/init.c
arch/mips/au1000/pb1000/init.c
arch/mips/au1000/pb1100/init.c
arch/mips/au1000/pb1200/init.c
arch/mips/au1000/pb1500/init.c
arch/mips/au1000/pb1550/init.c
arch/mips/au1000/xxs1500/init.c
arch/mips/basler/excite/excite_prom.c
arch/mips/gt64120/wrppmc/setup.c
arch/mips/jmr3927/rbhma3100/init.c
arch/mips/lemote/lm2e/prom.c
arch/mips/philips/pnx8550/jbs/init.c
arch/mips/philips/pnx8550/stb810/prom_init.c
arch/mips/pmc-sierra/yosemite/prom.c
arch/mips/tx4938/toshiba_rbtx4938/prom.c
arch/mips/vr41xx/nec-cmbvr4133/setup.c
include/asm-mips/bootinfo.h

index 43298fd..e822c12 100644 (file)
@@ -57,17 +57,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       /* Set the platform # */
-#if    defined(CONFIG_MIPS_DB1550)
-       mips_machtype = MACH_DB1550;
-#elif  defined(CONFIG_MIPS_DB1500)
-       mips_machtype = MACH_DB1500;
-#elif  defined(CONFIG_MIPS_DB1100)
-       mips_machtype = MACH_DB1100;
-#else
-       mips_machtype = MACH_DB1000;
-#endif
-
        prom_init_cmdline();
 
        memsize_str = prom_getenv("memsize");
index cdeae32..e700fd3 100644 (file)
@@ -54,8 +54,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       mips_machtype = MACH_MTX1;      /* set the platform # */
-
        prom_init_cmdline();
 
        memsize_str = prom_getenv("memsize");
index ddccaf6..2515b9f 100644 (file)
@@ -52,8 +52,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       mips_machtype = MACH_PB1000;
-
        prom_init_cmdline();
        memsize_str = prom_getenv("memsize");
        if (!memsize_str) {
index c93fd39..490c380 100644 (file)
@@ -53,8 +53,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg3;
 
-       mips_machtype = MACH_PB1100;
-
        prom_init_cmdline();
 
        memsize_str = prom_getenv("memsize");
index c251570..069ed45 100644 (file)
@@ -53,8 +53,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       mips_machtype = MACH_PB1200;
-
        prom_init_cmdline();
        memsize_str = prom_getenv("memsize");
        if (!memsize_str) {
index 507d4b2..db558c9 100644 (file)
@@ -53,8 +53,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       mips_machtype = MACH_PB1500;
-
        prom_init_cmdline();
        memsize_str = prom_getenv("memsize");
        if (!memsize_str) {
index b03eee6..b716363 100644 (file)
@@ -53,8 +53,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       mips_machtype = MACH_PB1550;
-
        prom_init_cmdline();
        memsize_str = prom_getenv("memsize");
        if (!memsize_str) {
index 6532939..7e6878c 100644 (file)
@@ -52,8 +52,6 @@ void __init prom_init(void)
        prom_argv = (char **) fw_arg1;
        prom_envp = (char **) fw_arg2;
 
-       mips_machtype = MACH_XXS1500;   /* set the platform # */
-
        prom_init_cmdline();
 
        memsize_str = prom_getenv("memsize");
index 2d752c2..68d8bc5 100644 (file)
@@ -135,8 +135,6 @@ void __init prom_init(void)
 #ifdef CONFIG_64BIT
 #      error 64 bit support not implemented
 #endif /* CONFIG_64BIT */
-
-       mips_machtype = MACH_TITAN_EXCITE;
 }
 
 /* This is called from free_initmem(), so we need to provide it */
index 51f6b78..728ef6a 100644 (file)
@@ -121,8 +121,6 @@ const char *get_system_type(void)
  */
 void __init prom_init(void)
 {
-       mips_machtype = MACH_WRPPMC;
-
        add_memory_region(WRPPMC_SDRAM_SCS0_BASE, WRPPMC_SDRAM_SCS0_SIZE, BOOT_MEM_RAM);
        add_memory_region(WRPPMC_BOOTROM_BASE, WRPPMC_BOOTROM_SIZE, BOOT_MEM_ROM_DATA);
 
index b643f75..700b9cf 100644 (file)
@@ -52,10 +52,6 @@ void __init prom_init(void)
                puts("Warning: TX3927 TLB off\n");
 #endif
 
-#ifdef CONFIG_TOSHIBA_JMR3927
-       mips_machtype = MACH_TOSHIBA_JMR3927;
-#endif
-
        prom_init_cmdline();
        add_memory_region(0, JMR3927_SDRAM_SIZE, BOOT_MEM_RAM);
 }
index 8243368..7edc15d 100644 (file)
@@ -57,8 +57,6 @@ void __init prom_init(void)
        arg = (int *)fw_arg1;
        env = (int *)fw_arg2;
 
-       mips_machtype = MACH_LEMOTE_FULONG;
-
        prom_init_cmdline();
 
        if ((strstr(arcs_cmdline, "console=")) == NULL)
index cfd90fa..90b4d35 100644 (file)
@@ -45,11 +45,8 @@ const char *get_system_type(void)
 
 void __init prom_init(void)
 {
-
        unsigned long memsize;
 
-       mips_machtype = MACH_PHILIPS_JBS;
-
        //memsize = 0x02800000; /* Trimedia uses memory above */
        memsize = 0x08000000; /* Trimedia uses memory above */
        add_memory_region(0, memsize, BOOT_MEM_RAM);
index fdb33ed..832dd60 100644 (file)
@@ -41,8 +41,6 @@ void __init prom_init(void)
 
        prom_init_cmdline();
 
-       mips_machtype = MACH_PHILIPS_STB810;
-
        memsize = 0x08000000; /* Trimedia uses memory above */
        add_memory_region(0, memsize, BOOT_MEM_RAM);
 }
index 9b9936d..96d3ff0 100644 (file)
@@ -126,8 +126,6 @@ void __init prom_init(void)
                env++;
        }
 
-       mips_machtype = MACH_TITAN_YOSEMITE;
-
        prom_grab_secondary();
 }
 
index 69f21c1..1644bff 100644 (file)
@@ -47,7 +47,6 @@ void __init prom_init(void)
 #ifndef CONFIG_TX4938_NAND_BOOT
        prom_init_cmdline();
 #endif
-       mips_machtype = MACH_TOSHIBA_RBTX4938;
 
        msize = tx4938_get_mem_size();
        add_memory_region(0, msize << 20, BOOT_MEM_RAM);
index f14bea8..7723d20 100644 (file)
@@ -64,8 +64,6 @@ static void __init nec_cmbvr4133_setup(void)
 #endif
        set_io_port_base(KSEG1ADDR(0x16000000));
 
-       mips_machtype = MACH_NEC_CMBVR4133;
-
 #ifdef CONFIG_PCI
 #ifdef CONFIG_ROCKHOPPER
        ali_m5229_preinit();
index b2dd9b3..8e9bb16 100644 (file)
 #define  MACH_DS5900           10      /* DECsystem 5900               */
 
 /*
- * Valid machtype for group ARC
- */
-#define MACH_DESKSTATION_RPC44  0      /* Deskstation rPC44 */
-#define MACH_DESKSTATION_TYNE  1       /* Deskstation Tyne */
-
-/*
  * Valid machtype for group SNI_RM
  */
 #define  MACH_SNI_RM200_PCI    0       /* RM200/RM300/RM400 PCI series */
 
 /*
- * Valid machtype for group ACN
- */
-#define  MACH_ACN_MIPS_BOARD   0       /* ACN MIPS single board        */
-
-/*
  * Valid machtype for group SGI
  */
 #define  MACH_SGI_IP22         0       /* Indy, Indigo2, Challenge S   */
 #define  MACH_SGI_IP30         4       /* Octane, Octane2              */
 
 /*
- * Valid machtype for group COBALT
- */
-#define  MACH_COBALT_27                0       /* Proto "27" hardware          */
-
-/*
- * Valid machtype for group BAGET
- */
-#define  MACH_BAGET201         0       /* BT23-201 */
-#define  MACH_BAGET202         1       /* BT23-202 */
-
-/*
- * Cosine boards.
- */
-#define  MACH_COSINE_ORION     0
-
-/*
- * Valid machtype for group MOMENCO
- */
-#define  MACH_MOMENCO_OCELOT   0
-#define  MACH_MOMENCO_OCELOT_G 1       /* no more supported (may 2007) */
-#define  MACH_MOMENCO_OCELOT_C 2       /* no more supported (jun 2007) */
-#define  MACH_MOMENCO_JAGUAR_ATX 3     /* no more supported (may 2007) */
-#define  MACH_MOMENCO_OCELOT_3 4
-
-/*
- * Valid machtype for group PHILIPS
- */
-#define  MACH_PHILIPS_NINO     0       /* Nino */
-#define  MACH_PHILIPS_VELO     1       /* Velo */
-#define  MACH_PHILIPS_JBS      2       /* JBS */
-#define  MACH_PHILIPS_STB810   3       /* STB810 */
-
-/*
- * Valid machtype for group SIBYTE
- */
-#define  MACH_SWARM              0
-
-/*
  * Valid machtypes for group Toshiba
  */
 #define  MACH_PALLAS           0
 #define  MACH_TOSHIBA_RBTX4938 6
 
 /*
- * Valid machtype for group Alchemy
- */
-#define  MACH_PB1000           0       /* Au1000-based eval board */
-#define  MACH_PB1100           1       /* Au1100-based eval board */
-#define  MACH_PB1500           2       /* Au1500-based eval board */
-#define  MACH_DB1000           3       /* Au1000-based eval board */
-#define  MACH_DB1100           4       /* Au1100-based eval board */
-#define  MACH_DB1500           5       /* Au1500-based eval board */
-#define  MACH_XXS1500          6       /* Au1500-based eval board */
-#define  MACH_MTX1             7       /* 4G MTX-1 Au1500-based board */
-#define  MACH_PB1550           8       /* Au1550-based eval board */
-#define  MACH_DB1550           9       /* Au1550-based eval board */
-#define  MACH_PB1200           10       /* Au1200-based eval board */
-#define  MACH_DB1200           11       /* Au1200-based eval board */
-
-/*
- * Valid machtype for group NEC_VR41XX
- *
- * Various NEC-based devices.
- *
- * FIXME: MACH_GROUPs should be by _MANUFACTURER_ of * the device, not by
- *        technical properties, so no new additions to this group.
- */
-#define  MACH_NEC_OSPREY       0       /* Osprey eval board */
-#define  MACH_NEC_EAGLE                1       /* NEC Eagle/Hawk board */
-#define  MACH_ZAO_CAPCELLA     2       /* ZAO Networks Capcella */
-#define  MACH_VICTOR_MPC30X    3       /* Victor MP-C303/304 */
-#define  MACH_IBM_WORKPAD      4       /* IBM WorkPad z50 */
-#define  MACH_CASIO_E55                5       /* CASIO CASSIOPEIA E-10/15/55/65 */
-#define  MACH_TANBAC_TB0226    6       /* TANBAC TB0226 (Mbase) */
-#define  MACH_TANBAC_TB0229    7       /* TANBAC TB0229 (VR4131DIMM) */
-#define  MACH_NEC_CMBVR4133    8       /* CMB VR4133 Board */
-
-#define  MACH_HP_LASERJET      1
-
-/*
  * Valid machtype for group LASAT
  */
 #define  MACH_LASAT_100                0       /* Masquerade II/SP100/SP50/SP25 */
 #define  MACH_LASAT_200                1       /* Masquerade PRO/SP200 */
 
 /*
- * Valid machtype for group TITAN
- */
-#define  MACH_TITAN_YOSEMITE   1       /* PMC-Sierra Yosemite          */
-#define  MACH_TITAN_EXCITE     2       /* Basler eXcite                */
-
-/*
  * Valid machtype for group NEC EMMA2RH
  */
 #define  MACH_NEC_MARKEINS     0       /* NEC EMMA2RH Mark-eins        */
 
 /*
- * Valid machtype for group LEMOTE
- */
-#define  MACH_LEMOTE_FULONG        0
-
-/*
  * Valid machtype for group PMC-MSP
  */
 #define MACH_MSP4200_EVAL       0      /* PMC-Sierra MSP4200 Evaluation */
 #define MACH_MSP7120_FPGA       5      /* PMC-Sierra MSP7120 Emulation */
 #define MACH_MSP_OTHER        255      /* PMC-Sierra unknown board type */
 
-#define MACH_WRPPMC             1
-
-/*
- * Valid machtype for group Broadcom
- */
-#define MACH_GROUP_BRCM                23      /* Broadcom                     */
-#define  MACH_BCM47XX          1       /* Broadcom BCM47XX             */
-
 #define CL_SIZE                        COMMAND_LINE_SIZE
 
 const char *get_system_type(void);