summaryrefslogtreecommitdiff
path: root/drivers/staging/octeon/ethernet-tx.c
diff options
context:
space:
mode:
authorAaro Koskinen <aaro.koskinen@iki.fi>2015-04-04 19:51:19 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-04-30 15:06:09 (GMT)
commitc93b0e75a819e648e7c16a5ebd503a2a36f7c1ac (patch)
tree78a7985a714e7d42caec8052d6b45b46e5026001 /drivers/staging/octeon/ethernet-tx.c
parentcccdb27755a3ae79a5fb98257c93d4ea80efe3f8 (diff)
downloadlinux-c93b0e75a819e648e7c16a5ebd503a2a36f7c1ac.tar.xz
staging: octeon-ethernet: eliminate DONT_WRITEBACK
This feature is not used so eliminate it. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/octeon/ethernet-tx.c')
-rw-r--r--drivers/staging/octeon/ethernet-tx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/octeon/ethernet-tx.c b/drivers/staging/octeon/ethernet-tx.c
index 94ba85a..25f89b6 100644
--- a/drivers/staging/octeon/ethernet-tx.c
+++ b/drivers/staging/octeon/ethernet-tx.c
@@ -576,7 +576,7 @@ int cvm_oct_xmit_pow(struct sk_buff *skb, struct net_device *dev)
if (unlikely(packet_buffer == NULL)) {
printk_ratelimited("%s: Failed to allocate a packet buffer\n",
dev->name);
- cvmx_fpa_free(work, CVMX_FPA_WQE_POOL, DONT_WRITEBACK(1));
+ cvmx_fpa_free(work, CVMX_FPA_WQE_POOL, 1);
priv->stats.tx_dropped++;
dev_kfree_skb_any(skb);
return 0;