diff options
author | Wojciech Dubowik <dubowoj@neratec.com> | 2011-01-11 11:00:31 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-01-19 19:36:08 +0300 |
commit | fda9b7afa70f9003853929821748aec98d567b1e (patch) | |
tree | 168d1a800bc53c63bd59e1f780a66852502247c2 /drivers/net/wireless/ath/ath5k/ahb.c | |
parent | 8b3f4616d40a2ad19dd14af40b73f56860c812ea (diff) | |
download | linux-fda9b7afa70f9003853929821748aec98d567b1e.tar.xz |
ath5k: Fix return codes for eeprom read functions.
Eeprom read functions are of bool type and not int.
Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@neratec.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/ahb.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/ahb.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath5k/ahb.c b/drivers/net/wireless/ath/ath5k/ahb.c index 707cde149248..ae84b86c3bf2 100644 --- a/drivers/net/wireless/ath/ath5k/ahb.c +++ b/drivers/net/wireless/ath/ath5k/ahb.c @@ -31,7 +31,8 @@ static void ath5k_ahb_read_cachesize(struct ath_common *common, int *csz) *csz = L1_CACHE_BYTES >> 2; } -bool ath5k_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data) +static bool +ath5k_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data) { struct ath5k_softc *sc = common->priv; struct platform_device *pdev = to_platform_device(sc->dev); @@ -46,10 +47,10 @@ bool ath5k_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data) eeprom += off; if (eeprom > eeprom_end) - return -EINVAL; + return false; *data = *eeprom; - return 0; + return true; } int ath5k_hw_read_srev(struct ath5k_hw *ah) |