Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: wfx: dat_tx.c: remove space after a cast

remove extra spaces after casts in file data_tx.c

Signed-off-by: Kaaira Gupta <kgupta@es.iitr.ac.in>
Link: https://lore.kernel.org/r/20200310142509.25632-4-kgupta@es.iitr.ac.in
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Kaaira Gupta and committed by
Greg Kroah-Hartman
df69646b c67dc09f

+2 -2
+2 -2
drivers/staging/wfx/data_tx.c
··· 304 304 struct ieee80211_hdr *hdr) 305 305 { 306 306 struct wfx_sta_priv *sta_priv = 307 - sta ? (struct wfx_sta_priv *) &sta->drv_priv : NULL; 307 + sta ? (struct wfx_sta_priv *)&sta->drv_priv : NULL; 308 308 const u8 *da = ieee80211_get_DA(hdr); 309 309 310 310 if (sta_priv && sta_priv->link_id) ··· 430 430 struct ieee80211_key_conf *hw_key = tx_info->control.hw_key; 431 431 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; 432 432 int queue_id = tx_info->hw_queue; 433 - size_t offset = (size_t) skb->data & 3; 433 + size_t offset = (size_t)skb->data & 3; 434 434 int wmsg_len = sizeof(struct hif_msg) + 435 435 sizeof(struct hif_req_tx) + offset; 436 436