diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2019-11-06 00:41:34 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-11-06 02:48:39 +0300 |
commit | c2f102f1e884fe1a6a54c36f232e560675657f12 (patch) | |
tree | 138f7c176d5593ca0be3a251f75178cff9cddabd /drivers/spi | |
parent | 1403cfa69d310781f9548951c97725c67ffcf613 (diff) | |
download | linux-c2f102f1e884fe1a6a54c36f232e560675657f12.tar.xz |
spi: bcm2835: fix typo in comment
GPIOS_OUT_LOW should be GPIOD_OUT_LOW.
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Link: https://lore.kernel.org/r/20191105214134.25142-1-chris.packham@alliedtelesis.co.nz
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-bcm2835.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-bcm2835.c b/drivers/spi/spi-bcm2835.c index b4070c0de3df..fb61a620effc 100644 --- a/drivers/spi/spi-bcm2835.c +++ b/drivers/spi/spi-bcm2835.c @@ -1248,7 +1248,7 @@ static int bcm2835_spi_setup(struct spi_device *spi) /* * Retrieve the corresponding GPIO line used for CS. * The inversion semantics will be handled by the GPIO core - * code, so we pass GPIOS_OUT_LOW for "unasserted" and + * code, so we pass GPIOD_OUT_LOW for "unasserted" and * the correct flag for inversion semantics. The SPI_CS_HIGH * on spi->mode cannot be checked for polarity in this case * as the flag use_gpio_descriptors enforces SPI_CS_HIGH. |