diff options
author | Cindy H Kao <cindy.h.kao@intel.com> | 2009-09-04 20:38:46 -0400 |
---|---|---|
committer | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2009-10-19 02:55:59 -0400 |
commit | f8fc3295570115267ce1ce901f362d13d194aefc (patch) | |
tree | 7546bcfa99081af6c6898a36d7abb6b6dea8d726 /drivers/net/wimax | |
parent | 10607c86e163e3da8bdf58a934da7dd3a68dcb7c (diff) |
wimax/iwmc3200: add new sdio device ID to support iwmc3200 2.5GHz sku
Different sdio device IDs are designated to support different intel
wimax silicon sku. The new macro SDIO_DEVICE_ID_IWMC3200_WIMAX_2G5(0x1407)
is added to support iwmc3200 2.5GHz sku. The existing
SDIO_DEVICE_ID_IWMC3200_WIMAX(0x1402) is for iwmc3200 general sku.
Signed-off-by: Cindy H Kao <cindy.h.kao@intel.com>
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Diffstat (limited to 'drivers/net/wimax')
-rw-r--r-- | drivers/net/wimax/i2400m/sdio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wimax/i2400m/sdio.c b/drivers/net/wimax/i2400m/sdio.c index 2d2cc5ac6d86..de158ee0c32c 100644 --- a/drivers/net/wimax/i2400m/sdio.c +++ b/drivers/net/wimax/i2400m/sdio.c | |||
@@ -550,6 +550,8 @@ const struct sdio_device_id i2400ms_sdio_ids[] = { | |||
550 | /* Intel: i2400m WiMAX (iwmc3200) over SDIO */ | 550 | /* Intel: i2400m WiMAX (iwmc3200) over SDIO */ |
551 | { SDIO_DEVICE(SDIO_VENDOR_ID_INTEL, | 551 | { SDIO_DEVICE(SDIO_VENDOR_ID_INTEL, |
552 | SDIO_DEVICE_ID_INTEL_IWMC3200WIMAX) }, | 552 | SDIO_DEVICE_ID_INTEL_IWMC3200WIMAX) }, |
553 | { SDIO_DEVICE(SDIO_VENDOR_ID_INTEL, | ||
554 | SDIO_DEVICE_ID_INTEL_IWMC3200WIMAX_2G5) }, | ||
553 | { /* end: all zeroes */ }, | 555 | { /* end: all zeroes */ }, |
554 | }; | 556 | }; |
555 | MODULE_DEVICE_TABLE(sdio, i2400ms_sdio_ids); | 557 | MODULE_DEVICE_TABLE(sdio, i2400ms_sdio_ids); |