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

staging: wfx: data_tx.h: remove space after cast

remove extra space after a cast in file data_tx.h

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

authored by

Kaaira Gupta and committed by
Greg Kroah-Hartman
3f716acc df69646b

+1 -1
+1 -1
drivers/staging/wfx/data_tx.h
··· 61 61 static inline struct hif_req_tx *wfx_skb_txreq(struct sk_buff *skb) 62 62 { 63 63 struct hif_msg *hif = (struct hif_msg *)skb->data; 64 - struct hif_req_tx *req = (struct hif_req_tx *) hif->body; 64 + struct hif_req_tx *req = (struct hif_req_tx *)hif->body; 65 65 66 66 return req; 67 67 }