提交 c613c5f6 编写于 作者: W Wei Yongjun 提交者: Jens Axboe

mg_disk: fix error return code in mg_probe()

Fix to return a negative error code from the error handling
case instead of 0, as returned elsewhere in this function.
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Reviewed-by: NJingoo Han <jg1.han@samsung.com>
Signed-off-by: NJens Axboe <axboe@kernel.dk>
上级 80b00df2
...@@ -890,8 +890,10 @@ static int mg_probe(struct platform_device *plat_dev) ...@@ -890,8 +890,10 @@ static int mg_probe(struct platform_device *plat_dev)
gpio_direction_output(host->rst, 1); gpio_direction_output(host->rst, 1);
/* reset out pin */ /* reset out pin */
if (!(prv_data->dev_attr & MG_DEV_MASK)) if (!(prv_data->dev_attr & MG_DEV_MASK)) {
err = -EINVAL;
goto probe_err_3a; goto probe_err_3a;
}
if (prv_data->dev_attr != MG_BOOT_DEV) { if (prv_data->dev_attr != MG_BOOT_DEV) {
rsc = platform_get_resource_byname(plat_dev, IORESOURCE_IO, rsc = platform_get_resource_byname(plat_dev, IORESOURCE_IO,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册