diff options
author | Vasanthakumar Thiagarajan <vasanth@atheros.com> | 2009-09-09 15:25:49 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-09 11:25:25 -0400 |
commit | aeac355d23fb13a2082a8740ae7cf9408a71ec2c (patch) | |
tree | 831acd0d8035e29f4d72b31121a929fb28442cb4 /drivers/net/wireless/ath/ath9k/ahb.c | |
parent | 4d8cd26849737e141ff0aa23fedacef4ea76ea4f (diff) | |
download | linux-3.10-aeac355d23fb13a2082a8740ae7cf9408a71ec2c.tar.gz linux-3.10-aeac355d23fb13a2082a8740ae7cf9408a71ec2c.tar.bz2 linux-3.10-aeac355d23fb13a2082a8740ae7cf9408a71ec2c.zip |
ath9k: Store subsystem id in struct hw_version
This subsystem id will be used later to turn on the btcoex
support.
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ahb.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ahb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ahb.c b/drivers/net/wireless/ath/ath9k/ahb.c index 7dc6301ae20..2ad7d0280f7 100644 --- a/drivers/net/wireless/ath/ath9k/ahb.c +++ b/drivers/net/wireless/ath/ath9k/ahb.c @@ -119,7 +119,7 @@ static int ath_ahb_probe(struct platform_device *pdev) sc->bus_ops = &ath_ahb_bus_ops; sc->irq = irq; - ret = ath_init_device(AR5416_AR9100_DEVID, sc); + ret = ath_init_device(AR5416_AR9100_DEVID, sc, 0x0); if (ret) { dev_err(&pdev->dev, "failed to initialize device\n"); goto err_free_hw; |