Fix rb535 revision 5 detection
SVN-Revision: 9008
This commit is contained in:
parent
7a86da9d37
commit
6652c1fe0b
2 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue