Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13bda122 authored by Ming Lei's avatar Ming Lei Committed by John W. Linville
Browse files

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: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4ef25011
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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))