commit | e74f8f8ba5949d9b47be5babe43be13cbe17fd55 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Thu Mar 25 10:26:04 2021 +1300 |
committer | Simon Glass <sjg@chromium.org> | Tue Apr 06 16:33:19 2021 +1200 |
tree | 8d25310abf97843833d0612c61d7ff01f85b401b | |
parent | abc29381fdde496f60db4496fa2dd2abbeba4c6d [diff] |
dm: core: Use -ENOSPC in acpi_get_path() Update this function to use -ENOSPC which is more commly used when a buffer runs out of space. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/drivers/core/acpi.c b/drivers/core/acpi.c index 0901b92..2176d8b 100644 --- a/drivers/core/acpi.c +++ b/drivers/core/acpi.c
@@ -91,7 +91,7 @@ path = dev_read_string(dev, "acpi,path"); if (path) { if (strlen(path) >= maxlen) - return -E2BIG; + return -ENOSPC; strcpy(out_path, path); return 0; }