Commit beb6e57b authored by Janani Ravichandran's avatar Janani Ravichandran Committed by Greg Kroah-Hartman

staging: octeon: Add spaces around operators

Add spaces around operators for better readability. Change suggested by
checkpatch.
Signed-off-by: default avatarJanani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cc4188b6
...@@ -95,10 +95,10 @@ static void cvm_oct_free_tx_skbs(struct net_device *dev) ...@@ -95,10 +95,10 @@ static void cvm_oct_free_tx_skbs(struct net_device *dev)
for (qos = 0; qos < queues_per_port; qos++) { for (qos = 0; qos < queues_per_port; qos++) {
if (skb_queue_len(&priv->tx_free_list[qos]) == 0) if (skb_queue_len(&priv->tx_free_list[qos]) == 0)
continue; continue;
skb_to_free = cvmx_fau_fetch_and_add32(priv->fau+qos*4, skb_to_free = cvmx_fau_fetch_and_add32(priv->fau + qos * 4,
MAX_SKB_TO_FREE); MAX_SKB_TO_FREE);
skb_to_free = cvm_oct_adjust_skb_to_free(skb_to_free, skb_to_free = cvm_oct_adjust_skb_to_free(skb_to_free,
priv->fau+qos*4); priv->fau + qos * 4);
total_freed += skb_to_free; total_freed += skb_to_free;
...@@ -419,7 +419,8 @@ int cvm_oct_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -419,7 +419,8 @@ int cvm_oct_xmit(struct sk_buff *skb, struct net_device *dev)
cvmx_fau_fetch_and_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE, 0); cvmx_fau_fetch_and_add32(FAU_NUM_PACKET_BUFFERS_TO_FREE, 0);
} }
skb_to_free = cvm_oct_adjust_skb_to_free(skb_to_free, priv->fau+qos*4); skb_to_free = cvm_oct_adjust_skb_to_free(skb_to_free,
priv->fau + qos * 4);
/* /*
* If we're sending faster than the receive can free them then * If we're sending faster than the receive can free them then
...@@ -430,7 +431,7 @@ int cvm_oct_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -430,7 +431,7 @@ int cvm_oct_xmit(struct sk_buff *skb, struct net_device *dev)
if (pko_command.s.dontfree) { if (pko_command.s.dontfree) {
queue_type = QUEUE_CORE; queue_type = QUEUE_CORE;
pko_command.s.reg0 = priv->fau+qos*4; pko_command.s.reg0 = priv->fau + qos * 4;
} else { } else {
queue_type = QUEUE_HW; queue_type = QUEUE_HW;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment