diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 13:08:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 13:08:08 -0400 |
commit | fffdedef691a0f6fa7ca1fc0a2a508cbb49def69 (patch) | |
tree | 124b128308a4d35bab0ac8001da4b324d40220eb /drivers/net/smc911x.h | |
parent | 5723ff931a94acf0738df42604ee89f852e151b0 (diff) | |
parent | bf94e17bc8d35fc339945a42990a2f2b5e9b5a40 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:
net/mac80211/rx.c: fix build error
acpi: Make ACPI_TOSHIBA depend on INPUT.
net/bfin_mac.c MDIO namespace fixes
jme: remove unused #include <version.h>
netfilter: remove unused #include <version.h>
net: Fix off-by-one in skb_dma_map
smc911x: Add support for LAN921{5,7,8} chips from SMSC
qlge: remove duplicated #include
wireless: remove duplicated #include
net/au1000_eth.c MDIO namespace fixes
net/tc35815.c: fix compilation
sky2: Fix WOL regression
r8169: NULL pointer dereference on r8169 load
Diffstat (limited to 'drivers/net/smc911x.h')
-rw-r--r-- | drivers/net/smc911x.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/net/smc911x.h b/drivers/net/smc911x.h index 2abfc2845198..bf6240f23f5d 100644 --- a/drivers/net/smc911x.h +++ b/drivers/net/smc911x.h | |||
@@ -666,10 +666,13 @@ smc_pxa_dma_outsl(struct smc911x_local *lp, u_long physaddr, | |||
666 | #define LAN911X_INTERNAL_PHY_ID (0x0007C000) | 666 | #define LAN911X_INTERNAL_PHY_ID (0x0007C000) |
667 | 667 | ||
668 | /* Chip ID values */ | 668 | /* Chip ID values */ |
669 | #define CHIP_9115 0x115 | 669 | #define CHIP_9115 0x0115 |
670 | #define CHIP_9116 0x116 | 670 | #define CHIP_9116 0x0116 |
671 | #define CHIP_9117 0x117 | 671 | #define CHIP_9117 0x0117 |
672 | #define CHIP_9118 0x118 | 672 | #define CHIP_9118 0x0118 |
673 | #define CHIP_9215 0x115A | ||
674 | #define CHIP_9217 0x117A | ||
675 | #define CHIP_9218 0x118A | ||
673 | 676 | ||
674 | struct chip_id { | 677 | struct chip_id { |
675 | u16 id; | 678 | u16 id; |
@@ -681,6 +684,9 @@ static const struct chip_id chip_ids[] = { | |||
681 | { CHIP_9116, "LAN9116" }, | 684 | { CHIP_9116, "LAN9116" }, |
682 | { CHIP_9117, "LAN9117" }, | 685 | { CHIP_9117, "LAN9117" }, |
683 | { CHIP_9118, "LAN9118" }, | 686 | { CHIP_9118, "LAN9118" }, |
687 | { CHIP_9215, "LAN9215" }, | ||
688 | { CHIP_9217, "LAN9217" }, | ||
689 | { CHIP_9218, "LAN9218" }, | ||
684 | { 0, NULL }, | 690 | { 0, NULL }, |
685 | }; | 691 | }; |
686 | 692 | ||