i2c-pca-platform: Fix error code
Fix errorcode to be more descriptive when ioremap fails. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
Родитель
c80ebe7987
Коммит
7650da023e
|
@ -163,7 +163,7 @@ static int __devinit i2c_pca_pf_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
i2c->reg_base = ioremap(res->start, res_len(res));
|
i2c->reg_base = ioremap(res->start, res_len(res));
|
||||||
if (!i2c->reg_base) {
|
if (!i2c->reg_base) {
|
||||||
ret = -EIO;
|
ret = -ENOMEM;
|
||||||
goto e_remap;
|
goto e_remap;
|
||||||
}
|
}
|
||||||
i2c->io_base = res->start;
|
i2c->io_base = res->start;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче