mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-07-22 23:05:25 +00:00
dm: gpio: Correct use of -ENODEV in drivers
In U-Boot -ENODEV means that there is no device. When there is a problem with the device, drivers should return an error like -ENXIO or -EREMOTEIO. When the device tree properties cannot be read correct , they should return -EINVAL. Update various GPIO drivers to follow this rule, to help with consistency for future driver writers. Signed-off-by: Simon Glass <sjg@chromium.org> Reported-by: Adam Ford <aford173@gmail.com>
This commit is contained in:
parent
4d68604189
commit
7c84319af9
9 changed files with 19 additions and 19 deletions
|
@ -168,7 +168,7 @@ static int imx_rgpio2p_bind(struct udevice *dev)
|
|||
|
||||
addr = devfdt_get_addr_index(dev, 1);
|
||||
if (addr == FDT_ADDR_T_NONE)
|
||||
return -ENODEV;
|
||||
return -EINVAL;
|
||||
|
||||
/*
|
||||
* TODO:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue