dm: spi: Change cs_info op to return -EINVAL for invalid cs num
We need distinguish the following two situations in various SPI APIs: - given chip select num is invalid - given chip select num is valid, but no device is attached Currently -ENODEV is returned for both cases. For the first case, it's more reasonable to return -EINVAL instead of -ENODEV for invalid chip select numbers. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Jagan Teki <jagan@amarulasolutions.com> # SoPine Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
@@ -458,7 +458,7 @@ struct dm_spi_ops {
|
||||
* @cs: The chip select (0..n-1)
|
||||
* @info: Returns information about the chip select, if valid.
|
||||
* On entry info->dev is NULL
|
||||
* @return 0 if OK (and @info is set up), -ENODEV if the chip select
|
||||
* @return 0 if OK (and @info is set up), -EINVAL if the chip select
|
||||
* is invalid, other -ve value on error
|
||||
*/
|
||||
int (*cs_info)(struct udevice *bus, uint cs, struct spi_cs_info *info);
|
||||
|
Reference in New Issue
Block a user