[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171023074424.2142-1-w.h.jeon329@gmail.com>
Date: Mon, 23 Oct 2017 16:44:24 +0900
From: Woohyung Jeon <w.h.jeon329@...il.com>
To: gregkh@...uxfoundation.org
Cc: Larry.Finger@...inger.net, frank@...eralsoftwareinc.com,
dan.carpenter@...cle.com, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org, Woohyung Jeon <w.h.jeon329@...il.com>
Subject: [PATCH] Staging: rtlwifi: pci: fixed coding style issues
Fixed 2 coding style issues.
There was two coding style issues and they were fixed.
c:2233 - unnecessary parenthesis was there, so removed.
c:652 - prohibited space was there, so removed.
Signed-off-by: Woohyung-Jeon <w.h.jeon329@...il.com>
---
drivers/staging/rtlwifi/pci.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtlwifi/pci.c b/drivers/staging/rtlwifi/pci.c
index 4035b8835bd1..2d4ef25a0606 100644
--- a/drivers/staging/rtlwifi/pci.c
+++ b/drivers/staging/rtlwifi/pci.c
@@ -649,7 +649,7 @@ static void _rtl_pci_tx_isr(struct ieee80211_hw *hw, int prio)
prio, ring->idx,
skb_queue_len(&ring->queue));
- ieee80211_wake_queue(hw, skb_get_queue_mapping (skb));
+ ieee80211_wake_queue(hw, skb_get_queue_mapping(skb));
}
tx_status_ok:
skb = NULL;
@@ -2230,7 +2230,7 @@ int rtl_pci_probe(struct pci_dev *pdev,
return err;
}
- if (((struct rtl_hal_cfg *)(id->driver_data))->mod_params->dma64 &&
+ if (((struct rtl_hal_cfg *)id->driver_data)->mod_params->dma64 &&
!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
WARN_ONCE(true,
--
2.14.2
Powered by blists - more mailing lists