40 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From b09189336f6d974c554aed03b4651e9f68ce0abd Mon Sep 17 00:00:00 2001
 | |
| From: Hauke Mehrtens <hauke@hauke-m.de>
 | |
| Date: Sun, 23 Feb 2014 16:38:29 +0100
 | |
| Subject: [PATCH 3/6] MIPS: BCM47XX: detect some more Linksys devices
 | |
| 
 | |
| The Linksys WRT54G/GS/GL family uses the same boardtype numbers, and
 | |
| the same gpio configuration. The boardtype numbers are changing with
 | |
| the hardware versions, but these hardware numbers are different or each
 | |
| model.
 | |
| Detect them all as one device, this also worked in OpenWrt.
 | |
| ---
 | |
|  arch/mips/bcm47xx/board.c                          |    4 +++-
 | |
|  arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h |    2 +-
 | |
|  2 files changed, 4 insertions(+), 2 deletions(-)
 | |
| 
 | |
| --- a/arch/mips/bcm47xx/board.c
 | |
| +++ b/arch/mips/bcm47xx/board.c
 | |
| @@ -176,7 +176,9 @@ struct bcm47xx_board_type_list3 bcm47xx_
 | |
|  	{{BCM47XX_BOARD_PHICOMM_M1, "Phicomm M1"}, "0x0590", "80", "0x1104"},
 | |
|  	{{BCM47XX_BOARD_ZTE_H218N, "ZTE H218N"}, "0x053d", "1234", "0x1305"},
 | |
|  	{{BCM47XX_BOARD_NETGEAR_WNR3500L, "Netgear WNR3500L"}, "0x04CF", "3500", "02"},
 | |
| -	{{BCM47XX_BOARD_LINKSYS_WRT54GSV1, "Linksys WRT54GS V1"}, "0x0101", "42", "0x10"},
 | |
| +	{{BCM47XX_BOARD_LINKSYS_WRT54G, "Linksys WRT54G/GS/GL"}, "0x0101", "42", "0x10"},
 | |
| +	{{BCM47XX_BOARD_LINKSYS_WRT54G, "Linksys WRT54G/GS/GL"}, "0x0467", "42", "0x10"},
 | |
| +	{{BCM47XX_BOARD_LINKSYS_WRT54G, "Linksys WRT54G/GS/GL"}, "0x0708", "42", "0x10"},
 | |
|  	{ {0}, NULL},
 | |
|  };
 | |
|  
 | |
| --- a/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
 | |
| +++ b/arch/mips/include/asm/mach-bcm47xx/bcm47xx_board.h
 | |
| @@ -66,7 +66,7 @@ enum bcm47xx_board {
 | |
|  	BCM47XX_BOARD_LINKSYS_WRT310NV1,
 | |
|  	BCM47XX_BOARD_LINKSYS_WRT310NV2,
 | |
|  	BCM47XX_BOARD_LINKSYS_WRT54G3GV2,
 | |
| -	BCM47XX_BOARD_LINKSYS_WRT54GSV1,
 | |
| +	BCM47XX_BOARD_LINKSYS_WRT54G,
 | |
|  	BCM47XX_BOARD_LINKSYS_WRT610NV1,
 | |
|  	BCM47XX_BOARD_LINKSYS_WRT610NV2,
 | |
|  	BCM47XX_BOARD_LINKSYS_WRTSL54GS,
 |