[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1537533600-44391-1-git-send-email-zhongjiang@huawei.com>
Date:   Fri, 21 Sep 2018 20:40:00 +0800
From:   zhong jiang <zhongjiang@...wei.com>
To:     <davem@...emloft.net>, <isdn@...ux-pingi.de>
CC:     <arvind.yadav.cs@...il.com>, <netdev@...r.kernel.org>,
        <linux-kernel@...r.kernel.org>
Subject: [PATCH] ISDN: Should use request_mem_region instead of request_region
In this case, Obviously, we should use request_mem_region to handle.
hence just replace the function.
Signed-off-by: zhong jiang <zhongjiang@...wei.com>
---
 drivers/isdn/hisax/isurf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/isdn/hisax/isurf.c b/drivers/isdn/hisax/isurf.c
index 53e299b..ebf49f0 100644
--- a/drivers/isdn/hisax/isurf.c
+++ b/drivers/isdn/hisax/isurf.c
@@ -263,7 +263,7 @@ int setup_isurf(struct IsdnCard *card)
 		       cs->hw.isurf.reset);
 		return (0);
 	}
-	if (!request_region(cs->hw.isurf.phymem, ISURF_IOMEM_SIZE, "isurf iomem")) {
+	if (!request_mem_region(cs->hw.isurf.phymem, ISURF_IOMEM_SIZE, "isurf iomem")) {
 		printk(KERN_WARNING "HiSax: Siemens I-Surf memory region "
 		       "%lx-%lx already in use\n",
 		       cs->hw.isurf.phymem,
-- 
1.7.12.4
Powered by blists - more mailing lists
 
