summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
diff options
context:
space:
mode:
authorKeerthi Reddy <keerthigd4990@gmail.com>2017-09-24 00:27:48 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-09-29 15:22:51 +0200
commite4c3f3ab8e59478b3015bd9b92d4bd2f58d09f58 (patch)
tree1c88264141997aba68547325db61315197e99d6e /drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
parentb6e2b3e1c53c43ada97223ecb7678a8b7a33172e (diff)
downloadop-kernel-dev-e4c3f3ab8e59478b3015bd9b92d4bd2f58d09f58.zip
op-kernel-dev-e4c3f3ab8e59478b3015bd9b92d4bd2f58d09f58.tar.gz
staging: wilc1000: No space is necessary after a cast
A space after type casting is not needed. All the other typecasts in this file don't put space after typecast. so remove space after typecast at this line. checked with checkpatch.pl script Signed-off-by: Keerthi Reddy <keerthigd4990@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/wilc_wfi_cfgoperations.c')
-rw-r--r--drivers/staging/wilc1000/wilc_wfi_cfgoperations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index ac5aaaf..36dc2a0 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -1617,7 +1617,7 @@ static int mgmt_tx(struct wiphy *wiphy,
*cookie = (unsigned long)buf;
priv->u64tx_cookie = *cookie;
- mgmt = (const struct ieee80211_mgmt *) buf;
+ mgmt = (const struct ieee80211_mgmt *)buf;
if (ieee80211_is_mgmt(mgmt->frame_control)) {
mgmt_tx = kmalloc(sizeof(struct p2p_mgmt_data), GFP_KERNEL);
OpenPOWER on IntegriCloud