diff options
-rw-r--r-- | drivers/net/qlge/qlge_ethtool.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/qlge/qlge_ethtool.c b/drivers/net/qlge/qlge_ethtool.c index eefb81b13758..9d922e2ff226 100644 --- a/drivers/net/qlge/qlge_ethtool.c +++ b/drivers/net/qlge/qlge_ethtool.c | |||
@@ -56,9 +56,9 @@ static int ql_update_ring_coalescing(struct ql_adapter *qdev) | |||
56 | for (i = 1; i < qdev->rss_ring_first_cq_id; i++, rx_ring++) { | 56 | for (i = 1; i < qdev->rss_ring_first_cq_id; i++, rx_ring++) { |
57 | rx_ring = &qdev->rx_ring[i]; | 57 | rx_ring = &qdev->rx_ring[i]; |
58 | cqicb = (struct cqicb *)rx_ring; | 58 | cqicb = (struct cqicb *)rx_ring; |
59 | cqicb->irq_delay = le16_to_cpu(qdev->tx_coalesce_usecs); | 59 | cqicb->irq_delay = cpu_to_le16(qdev->tx_coalesce_usecs); |
60 | cqicb->pkt_delay = | 60 | cqicb->pkt_delay = |
61 | le16_to_cpu(qdev->tx_max_coalesced_frames); | 61 | cpu_to_le16(qdev->tx_max_coalesced_frames); |
62 | cqicb->flags = FLAGS_LI; | 62 | cqicb->flags = FLAGS_LI; |
63 | status = ql_write_cfg(qdev, cqicb, sizeof(cqicb), | 63 | status = ql_write_cfg(qdev, cqicb, sizeof(cqicb), |
64 | CFG_LCQ, rx_ring->cq_id); | 64 | CFG_LCQ, rx_ring->cq_id); |
@@ -79,9 +79,9 @@ static int ql_update_ring_coalescing(struct ql_adapter *qdev) | |||
79 | i++) { | 79 | i++) { |
80 | rx_ring = &qdev->rx_ring[i]; | 80 | rx_ring = &qdev->rx_ring[i]; |
81 | cqicb = (struct cqicb *)rx_ring; | 81 | cqicb = (struct cqicb *)rx_ring; |
82 | cqicb->irq_delay = le16_to_cpu(qdev->rx_coalesce_usecs); | 82 | cqicb->irq_delay = cpu_to_le16(qdev->rx_coalesce_usecs); |
83 | cqicb->pkt_delay = | 83 | cqicb->pkt_delay = |
84 | le16_to_cpu(qdev->rx_max_coalesced_frames); | 84 | cpu_to_le16(qdev->rx_max_coalesced_frames); |
85 | cqicb->flags = FLAGS_LI; | 85 | cqicb->flags = FLAGS_LI; |
86 | status = ql_write_cfg(qdev, cqicb, sizeof(cqicb), | 86 | status = ql_write_cfg(qdev, cqicb, sizeof(cqicb), |
87 | CFG_LCQ, rx_ring->cq_id); | 87 | CFG_LCQ, rx_ring->cq_id); |