[PATCH] !fixup driver: replace dev_request_mem_region with dev_request_mem_resource
Andrey Smirnov
andrew.smirnov at gmail.com
Sun Mar 6 20:21:49 PST 2016
It looks like Coccinelle script failed to add register file
initialization code at least in two places
Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
---
drivers/i2c/busses/i2c-imx.c | 1 +
drivers/usb/imx/imx-usb-phy.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c
index 1017971..e407896 100644
--- a/drivers/i2c/busses/i2c-imx.c
+++ b/drivers/i2c/busses/i2c-imx.c
@@ -610,6 +610,7 @@ static int __init i2c_fsl_probe(struct device_d *pdev)
ret = PTR_ERR(iores);
goto fail;
}
+ i2c_fsl->base = IOMEM(iores->start);
i2c_fsl_init_recovery(i2c_fsl, pdev);
diff --git a/drivers/usb/imx/imx-usb-phy.c b/drivers/usb/imx/imx-usb-phy.c
index 3306bd4..33e27da 100644
--- a/drivers/usb/imx/imx-usb-phy.c
+++ b/drivers/usb/imx/imx-usb-phy.c
@@ -76,6 +76,7 @@ static int imx_usbphy_probe(struct device_d *dev)
ret = PTR_ERR(iores);
goto err_free;
}
+ imxphy->base = IOMEM(iores->start);
imxphy->clk = clk_get(dev, NULL);
if (IS_ERR(imxphy->clk)) {
--
2.5.0
More information about the barebox
mailing list