mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:04:38 +02:00
Fix rb535 revision 5 detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9008 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
43bab22e63
commit
8d27837d9e
@ -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 New Issue
Block a user