提交 1603bf3c 编写于 作者: S Simon Glass

dm: sandbox: sf: Tidy up the error handling in sandbox_sf_probe()

Use a single exit point when we have an error and add debugging there.
Signed-off-by: NSimon Glass <sjg@chromium.org>
上级 081f2fcb
......@@ -141,8 +141,10 @@ static int sandbox_sf_probe(struct udevice *dev)
assert(bus->seq != -1);
if (bus->seq < CONFIG_SANDBOX_SPI_MAX_BUS)
spec = state->spi[bus->seq][cs].spec;
if (!spec)
return -ENOENT;
if (!spec) {
ret = -ENOENT;
goto error;
}
file = strchr(spec, ':');
if (!file) {
......@@ -196,6 +198,7 @@ static int sandbox_sf_probe(struct udevice *dev)
return 0;
error:
debug("%s: Got error %d\n", __func__, ret);
return ret;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册