aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasanthakumar Thiagarajan <vasanth@atheros.com>2009-09-07 17:46:50 +0530
committerJohn W. Linville <linville@tuxdriver.com>2009-09-09 11:18:59 -0400
commitf020979d5d7c9816c071d0aedf60a889fa4fae40 (patch)
treec7ce3ee514c55c752fed4a9b3e45063dbea9c413
parent7b6840ab5f836a18c4ea98173f73c8d046930efb (diff)
downloadkernel_samsung_smdk4412-f020979d5d7c9816c071d0aedf60a889fa4fae40.zip
kernel_samsung_smdk4412-f020979d5d7c9816c071d0aedf60a889fa4fae40.tar.gz
kernel_samsung_smdk4412-f020979d5d7c9816c071d0aedf60a889fa4fae40.tar.bz2
ath9k: Remove unnecessary casting to u8 in pci_read_config_byte() call
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath9k/pci.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c
index 8bb286d..8b28814 100644
--- a/drivers/net/wireless/ath/ath9k/pci.c
+++ b/drivers/net/wireless/ath/ath9k/pci.c
@@ -35,8 +35,7 @@ static void ath_pci_read_cachesize(struct ath_softc *sc, int *csz)
{
u8 u8tmp;
- pci_read_config_byte(to_pci_dev(sc->dev), PCI_CACHE_LINE_SIZE,
- (u8 *)&u8tmp);
+ pci_read_config_byte(to_pci_dev(sc->dev), PCI_CACHE_LINE_SIZE, &u8tmp);
*csz = (int)u8tmp;
/*