[PATCH] ixgb: Redefined buffer_info-dma to be dma_addr_t instead of uint64
Redefined buffer_info-dma to be dma_addr_t instead of uint64 Signed-off-by: Mallikarjuna R Chilakala <mallikarjuna.chilakala@intel.com> Signed-off-by: Ganesh Venkatesan <ganesh.venkatesan@intel.com> Signed-off-by: John Ronciak <john.ronciak@intel.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
fcb01756e8
commit
b40a1f06c0
|
@ -119,7 +119,7 @@ struct ixgb_adapter;
|
||||||
* so a DMA handle can be stored along with the buffer */
|
* so a DMA handle can be stored along with the buffer */
|
||||||
struct ixgb_buffer {
|
struct ixgb_buffer {
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
uint64_t dma;
|
dma_addr_t dma;
|
||||||
unsigned long time_stamp;
|
unsigned long time_stamp;
|
||||||
uint16_t length;
|
uint16_t length;
|
||||||
uint16_t next_to_watch;
|
uint16_t next_to_watch;
|
||||||
|
|
Loading…
Reference in New Issue