diff options
| author | Andreas Pretzsch <apr@cn-eng.de> | 2009-07-09 21:50:05 +0200 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2009-07-22 22:53:43 -0700 | 
| commit | 2ea20efa47da9d98ff38223ff51dea5439ad8708 (patch) | |
| tree | be8cc3521bff092d4d2e0e8b7e099209fc965976 | |
| parent | 7168eba729b9e6d730db7cd1028767f7b1a6128b (diff) | |
| download | olio-uboot-2014.01-2ea20efa47da9d98ff38223ff51dea5439ad8708.tar.xz olio-uboot-2014.01-2ea20efa47da9d98ff38223ff51dea5439ad8708.zip | |
smc911x: add support for LAN9221
Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
| -rw-r--r-- | drivers/net/smc911x.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/drivers/net/smc911x.h b/drivers/net/smc911x.h index 80d2ce0aa..c14003c17 100644 --- a/drivers/net/smc911x.h +++ b/drivers/net/smc911x.h @@ -382,6 +382,7 @@ static inline void smc911x_reg_write(u32 addr, u32 val)  #define CHIP_9216	0x116a  #define CHIP_9217	0x117a  #define CHIP_9218	0x118a +#define CHIP_9221	0x9221  struct chip_id {  	u16 id; @@ -398,6 +399,7 @@ static const struct chip_id chip_ids[] =  {  	{ CHIP_9216, "LAN9216" },  	{ CHIP_9217, "LAN9217" },  	{ CHIP_9218, "LAN9218" }, +	{ CHIP_9221, "LAN9221" },  	{ 0, NULL },  }; |