Fix rb535 revision 5 detection
authorFlorian Fainelli <florian@openwrt.org>
Mon, 24 Sep 2007 15:09:10 +0000 (15:09 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Mon, 24 Sep 2007 15:09:10 +0000 (15:09 +0000)
SVN-Revision: 9008

target/linux/rb532/files/arch/mips/rb500/prom.c
target/linux/rb532/files/drivers/mtd/nand/rbmipsnand.c

index 1978b0f17c049b920dd7b7a6b4345e7d47ed6436..e6ac24344eacad05a5dd1a38301532e129929995 100644 (file)
@@ -42,7 +42,7 @@ extern void __init setup_serial_port(void);
 
 unsigned int idt_cpu_freq = 132000000;
 EXPORT_SYMBOL(idt_cpu_freq);
-unsigned int board_type = 500;
+char *board_type;
 EXPORT_SYMBOL(board_type);
 unsigned int gpio_bootup_state = 0;
 EXPORT_SYMBOL(gpio_bootup_state);
@@ -136,7 +136,7 @@ void __init prom_setup_cmdline(void){
 #endif
                if (i>0) *(cp++) = ' ';
                if (strncmp(prom_argv[i], BOARD_TAG, sizeof(BOARD_TAG) - 1) == 0) {
-                       board_type =  simple_strtoul(prom_argv[i] + sizeof(BOARD_TAG) - 1, 0, 10);
+                       strcpy(board_type, prom_argv[i] + sizeof(BOARD_TAG) -1);
                }
                if (strncmp(prom_argv[i], GPIO_TAG, sizeof(GPIO_TAG) - 1) == 0) {
                        gpio_bootup_state =  simple_strtoul(prom_argv[i] + sizeof(GPIO_TAG) - 1, 0, 10);
index 35febc665207efd7a670e5dfd0946e34655d8024..1db33a252fc6f4740f9cb62989e1029eaa522fa2 100644 (file)
@@ -33,7 +33,7 @@
 
 #define MEM32(x) *((volatile unsigned *) (x))
 
-extern unsigned int board_type;
+extern char *board_type;
 
 struct rb500_nand_info {
         struct nand_chip chip;
@@ -125,7 +125,7 @@ static int rbmips_probe(struct platform_device *pdev)
                return -EIO;
         }
 
-       if (board_type > 500) {
+       if (!strcmp(board_type, "500r5")) {
                data->flags1 = LO_FOFF | LO_CEX;
                data->flags2 = LO_ULED | LO_ALE | LO_CLE | LO_WPX;
        }