diff options
author | Shan Wei <shanwei@cn.fujitsu.com> | 2011-03-07 15:18:11 +0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-03-07 13:51:04 -0500 |
commit | 9ac4793359f374e4e9ec6a71b65677096c024acd (patch) | |
tree | dea4cefa8b329e2bbd7678742b3066d3daec19f9 /drivers/net/wireless/ath/ath9k/ahb.c | |
parent | 2d0123a5d635e336dbab21eba62e8dd4eb3e39a0 (diff) |
wireless:ath: use resource_size() help function
Signed-off-by: Shan Wei <shanwei@cn.fujitsu.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 99367210596..9cb0efa9b4c 100644 --- a/drivers/net/wireless/ath/ath9k/ahb.c +++ b/drivers/net/wireless/ath/ath9k/ahb.c @@ -75,7 +75,7 @@ static int ath_ahb_probe(struct platform_device *pdev) goto err_out; } - mem = ioremap_nocache(res->start, res->end - res->start + 1); + mem = ioremap_nocache(res->start, resource_size(res)); if (mem == NULL) { dev_err(&pdev->dev, "ioremap failed\n"); ret = -ENOMEM; |