diff options
author | Ming Lei <tom.leiming@gmail.com> | 2009-12-29 14:57:28 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-01-04 21:09:47 (GMT) |
commit | 13bda1225072f26603d3aeefc1f14c18b2ab29cd (patch) | |
tree | 80305d479f5709e2b09b307cfb13b31f7a21a8e9 | |
parent | 4ef250114f6672dd36f9b961a71d229642517645 (diff) | |
download | linux-fsl-qoriq-13bda1225072f26603d3aeefc1f14c18b2ab29cd.tar.xz |
ath9k: fix ito64
The unit of sizeof() is byte instead of bit, so fix it.
The patch can fix debug output of some dma_addr_t variables.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ath9k.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index e2cef2f..1597a42 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h @@ -33,11 +33,11 @@ struct ath_node; /* Macro to expand scalars to 64-bit objects */ -#define ito64(x) (sizeof(x) == 8) ? \ +#define ito64(x) (sizeof(x) == 1) ? \ (((unsigned long long int)(x)) & (0xff)) : \ - (sizeof(x) == 16) ? \ + (sizeof(x) == 2) ? \ (((unsigned long long int)(x)) & 0xffff) : \ - ((sizeof(x) == 32) ? \ + ((sizeof(x) == 4) ? \ (((unsigned long long int)(x)) & 0xffffffff) : \ (unsigned long long int)(x)) |