Commit dd27cd6d authored by Simon Glass's avatar Simon Glass Committed by Bin Meng
Browse files

x86: pinctrl: Silence the warning when a pin is not found



This does not necessarily indicate a problem, since some pins are
optional. Let the caller show an error if necessary.
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 98bf740e
...@@ -154,7 +154,7 @@ static int pinctrl_get_device(uint pad, struct udevice **devp) ...@@ -154,7 +154,7 @@ static int pinctrl_get_device(uint pad, struct udevice **devp)
return 0; return 0;
} }
} }
printf("pad %d not found\n", pad); log_debug("pad %d not found\n", pad);
return -ENOTBLK; return -ENOTBLK;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment