[PATCH] ISDN: Should use request_mem_region instead of request_region

From: zhong jiang
Date: Fri Sep 21 2018 - 08:52:31 EST


In this case, Obviously, we should use request_mem_region to handle.
hence just replace the function.

Signed-off-by: zhong jiang <zhongjiang@xxxxxxxxxx>
---
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