Commit 1591cb60838603c8cc2c540192c8244962436539
Committed by
David S. Miller
1 parent
5e58e5283a
Exists in
master
and in
7 other branches
starfire: clean up dma_addr_t size test
Now we have CONFIG_ARCH_DMA_ADDR_T_64BIT. We can fix the hacky dma_addr_t size test cleanly. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 1 additions and 5 deletions Side-by-side Diff
drivers/net/starfire.c
... | ... | @@ -144,11 +144,7 @@ |
144 | 144 | /* Time in jiffies before concluding the transmitter is hung. */ |
145 | 145 | #define TX_TIMEOUT (2 * HZ) |
146 | 146 | |
147 | -/* | |
148 | - * This SUCKS. | |
149 | - * We need a much better method to determine if dma_addr_t is 64-bit. | |
150 | - */ | |
151 | -#if (defined(__i386__) && defined(CONFIG_HIGHMEM64G)) || defined(__x86_64__) || defined (__ia64__) || defined(__alpha__) || (defined(CONFIG_MIPS) && ((defined(CONFIG_HIGHMEM) && defined(CONFIG_64BIT_PHYS_ADDR)) || defined(CONFIG_64BIT))) || (defined(__powerpc64__) || defined(CONFIG_PHYS_64BIT)) | |
147 | +#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT | |
152 | 148 | /* 64-bit dma_addr_t */ |
153 | 149 | #define ADDR_64BITS /* This chip uses 64 bit addresses. */ |
154 | 150 | #define netdrv_addr_t __le64 |