From: Kaaira Gupta Date: Tue, 10 Mar 2020 14:25:04 +0000 (+0530) Subject: staging: wfx: data_rx.c: remove space after cast X-Git-Tag: v5.10.7~2990^2~160 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98c386c2649bae14e14a6a0c86b66141e6bba14b;p=platform%2Fkernel%2Flinux-rpi.git staging: wfx: data_rx.c: remove space after cast remove an unesseccary space after a cast in file data_rx.c Signed-off-by: Kaaira Gupta Link: https://lore.kernel.org/r/20200310142509.25632-2-kgupta@es.iitr.ac.in Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wfx/data_rx.c b/drivers/staging/wfx/data_rx.c index 2a09f6b..c5b83fe 100644 --- a/drivers/staging/wfx/data_rx.c +++ b/drivers/staging/wfx/data_rx.c @@ -17,7 +17,7 @@ static int wfx_drop_encrypt_data(struct wfx_dev *wdev, const struct hif_ind_rx *arg, struct sk_buff *skb) { - struct ieee80211_hdr *frame = (struct ieee80211_hdr *) skb->data; + struct ieee80211_hdr *frame = (struct ieee80211_hdr *)skb->data; size_t hdrlen = ieee80211_hdrlen(frame->frame_control); size_t iv_len, icv_len;