aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wfx/queue.c
diff options
context:
space:
mode:
authorLourdes Pedrajas <lu@pplo.net>2020-03-15 05:49:22 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-03-17 13:51:46 +0100
commit76498b49f5bedbd5d184cceec05dde72749f9915 (patch)
treeafbe3ab6273fcef6f3c21a6b1e9a41d8eac14f82 /drivers/staging/wfx/queue.c
parentstaging: mt7621-pci: delete no more needed 'mt7621_reset_port' (diff)
downloadlinux-dev-76498b49f5bedbd5d184cceec05dde72749f9915.tar.xz
linux-dev-76498b49f5bedbd5d184cceec05dde72749f9915.zip
staging: wfx: remove unneeded spaces
Remove spaces after type casting operators in order to comply codding standards. Issue found with checkpatch. Signed-off-by: Lourdes Pedrajas <lu@pplo.net> Link: https://lore.kernel.org/r/20200315044922.14249-1-lu@pplo.net Reviewed-by: Stefano Brivio <sbrivio@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wfx/queue.c')
-rw-r--r--drivers/staging/wfx/queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wfx/queue.c b/drivers/staging/wfx/queue.c
index ed6dc8297738..39d9127ce4b9 100644
--- a/drivers/staging/wfx/queue.c
+++ b/drivers/staging/wfx/queue.c
@@ -540,7 +540,7 @@ struct hif_msg *wfx_tx_queues_get(struct wfx_dev *wdev)
skb = wfx_tx_queue_get(wdev, queue, tx_allowed_mask);
if (!skb)
continue;
- hif = (struct hif_msg *) skb->data;
+ hif = (struct hif_msg *)skb->data;
wvif = wdev_to_wvif(wdev, hif->interface);
WARN_ON(!wvif);