[PATCH] Staging: rtlwifi: pci: fixed coding style issues

2017-10-23 Thread Woohyung Jeon
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 
---
 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

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[PATCH] Staging: rtlwifi: pci: fixed a coding style issue

2017-10-23 Thread Woohyung Jeon
Fixed a coding style issue.
There was a prohibited space.
Removed.

Signed-off-by: Woohyung-Jeon 
---
 drivers/staging/rtlwifi/pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/pci.c b/drivers/staging/rtlwifi/pci.c
index 4035b8835bd1..70a64a5f564a 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;
-- 
2.14.2

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel