public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: rtl8821ae: mark pointer in pci_iounmap as __iomem
@ 2014-05-03 15:10 Martin Kepplinger
  2014-05-04  0:26 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Kepplinger @ 2014-05-03 15:10 UTC (permalink / raw)
  To: gregkh; +Cc: standby24x7, devel, linux-kernel, Martin Kepplinger

pci_iounmap is used that way in drivers/net/wireless/rtlwifi and this
fixes sparse warnings.

Signed-off-by: Martin Kepplinger <martink@posteo.de>
---
 drivers/staging/rtl8821ae/pci.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8821ae/pci.c b/drivers/staging/rtl8821ae/pci.c
index a562aa6..d934ecb 100644
--- a/drivers/staging/rtl8821ae/pci.c
+++ b/drivers/staging/rtl8821ae/pci.c
@@ -2416,7 +2416,7 @@ fail3:
 	ieee80211_free_hw(hw);
 
 	if (rtlpriv->io.pci_mem_start != 0)
-		pci_iounmap(pdev, (void *)rtlpriv->io.pci_mem_start);
+		pci_iounmap(pdev, (void __iomem *)rtlpriv->io.pci_mem_start);
 
 fail2:
 	pci_release_regions(pdev);
@@ -2479,7 +2479,7 @@ void rtl_pci_disconnect(struct pci_dev *pdev)
 
 	list_del(&rtlpriv->list);
 	if (rtlpriv->io.pci_mem_start != 0) {
-		pci_iounmap(pdev, (void *)rtlpriv->io.pci_mem_start);
+		pci_iounmap(pdev, (void __iomem *)rtlpriv->io.pci_mem_start);
 		pci_release_regions(pdev);
 	}
 
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-05-23 18:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-03 15:10 [PATCH] staging: rtl8821ae: mark pointer in pci_iounmap as __iomem Martin Kepplinger
2014-05-04  0:26 ` Greg KH
2014-05-04 12:22   ` [PATCH v2] staging: rtl8821ae: mark pci_mem_start (and _end) " Martin Kepplinger
2014-05-23 12:33     ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox