spi: Initialize cs_gpio and cs_gpios with -ENOENT
authorAndreas Larsson <andreas@gaisler.com>
Wed, 13 Feb 2013 13:20:25 +0000 (14:20 +0100)
committerGrant Likely <grant.likely@secretlab.ca>
Sun, 7 Apr 2013 09:12:20 +0000 (10:12 +0100)
commit446411e18b2cb17d153e45f634a3c9a79ada3ac2
treed0b227257591b9a010d453bef1bd2645901e3f0d
parent3d3522604a5557e80fdcab61c54bd04eaf15b525
spi: Initialize cs_gpio and cs_gpios with -ENOENT

The return value from of_get_named_gpio is -ENOENT when the given index
matches a hole in the "cs-gpios" property phandle list. However, the
default value of cs_gpio in struct spi_device and entries of cs_gpios in
struct spi_master is -EINVAL, which is documented to indicate that a
GPIO line should not be used for the given spi_device.

This sets the default value of cs_gpio in struct spi_device and entries
of cs_gpios in struct spi_master to -ENOENT. Thus, -ENOENT is the only
value used to indicate that no GPIO line should be used.

Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/spi/spi.c
include/linux/spi/spi.h