From: Ashvini Varatharaj Date: Tue, 15 Oct 2013 12:44:30 +0000 (+0530) Subject: Staging: rtl8192e: Replacing (u8*) with (u8 *) X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f222c70ccf67f4569908e5f087b8dfc956696174;p=deliverable%2Flinux.git Staging: rtl8192e: Replacing (u8*) with (u8 *) Fix checkpatch error: ERROR: "(foo*)" should be "(foo *)" Signed-off-by: Ashvini Varatharaj Reviewed-by: Josh Triplett Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8192e/dot11d.c b/drivers/staging/rtl8192e/dot11d.c index f7b14f8b7b83..1260f10944ef 100644 --- a/drivers/staging/rtl8192e/dot11d.c +++ b/drivers/staging/rtl8192e/dot11d.c @@ -151,7 +151,7 @@ void Dot11d_UpdateCountryIe(struct rtllib_device *dev, u8 *pTaddr, MaxChnlNum = pTriple->FirstChnl + j; } - pTriple = (struct chnl_txpow_triple *)((u8*)pTriple + 3); + pTriple = (struct chnl_txpow_triple *)((u8 *)pTriple + 3); } UPDATE_CIE_SRC(dev, pTaddr);