|
@@ -1778,9 +1778,9 @@ static int e100_xmit_prepare(struct nic *nic, struct cb *cb,
|
|
|
* testing, ie sending frames with bad CRC.
|
|
|
*/
|
|
|
if (unlikely(skb->no_fcs))
|
|
|
- cb->command |= __constant_cpu_to_le16(cb_tx_nc);
|
|
|
+ cb->command |= cpu_to_le16(cb_tx_nc);
|
|
|
else
|
|
|
- cb->command &= ~__constant_cpu_to_le16(cb_tx_nc);
|
|
|
+ cb->command &= ~cpu_to_le16(cb_tx_nc);
|
|
|
|
|
|
/* interrupt every 16 packets regardless of delay */
|
|
|
if ((nic->cbs_avail & ~15) == nic->cbs_avail)
|