diff options
author | Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com> | 2023-03-10 23:02:04 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-03-11 12:34:02 +0000 |
commit | 25fd0550d9b9c92288a17fb7d605cdcdb4a65a64 (patch) | |
tree | f3b54b82b501a572d1e6e1224f785aad5db8bbfa /drivers/net/wan | |
parent | 9e264f3f85a56cc109cc2d6010a48aa89d5c1ff1 (diff) | |
download | linux-25fd0550d9b9c92288a17fb7d605cdcdb4a65a64.tar.gz linux-25fd0550d9b9c92288a17fb7d605cdcdb4a65a64.tar.bz2 linux-25fd0550d9b9c92288a17fb7d605cdcdb4a65a64.zip |
net: Replace all spi->chip_select and spi->cs_gpiod references with function call
Supporting multi-cs in spi drivers would require the chip_select & cs_gpiod
members of struct spi_device to be an array. But changing the type of these
members to array would break the spi driver functionality. To make the
transition smoother introduced four new APIs to get/set the
spi->chip_select & spi->cs_gpiod and replaced all spi->chip_select and
spi->cs_gpiod references with get or set API calls.
While adding multi-cs support in further patches the chip_select & cs_gpiod
members of the spi_device structure would be converted to arrays & the
"idx" parameter of the APIs would be used as array index i.e.,
spi->chip_select[idx] & spi->cs_gpiod[idx] respectively.
Signed-off-by: Amit Kumar Mahapatra <amit.kumar-mahapatra@amd.com>
Reviewed-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/20230310173217.3429788-3-amit.kumar-mahapatra@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/net/wan')
-rw-r--r-- | drivers/net/wan/slic_ds26522.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/slic_ds26522.c b/drivers/net/wan/slic_ds26522.c index 6063552cea9b..8a51cfcff99e 100644 --- a/drivers/net/wan/slic_ds26522.c +++ b/drivers/net/wan/slic_ds26522.c @@ -211,7 +211,7 @@ static int slic_ds26522_probe(struct spi_device *spi) ret = slic_ds26522_init_configure(spi); if (ret == 0) - pr_info("DS26522 cs%d configured\n", spi->chip_select); + pr_info("DS26522 cs%d configured\n", spi_get_chipselect(spi, 0)); return ret; } |