From: Greg Kroah-Hartman Date: Mon, 16 Nov 2020 08:44:09 +0000 (+0100) Subject: 5.9-stable patches X-Git-Tag: v4.4.244~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b8ab993a362f1cf35a6e4691fbf261215d69431;p=thirdparty%2Fkernel%2Fstable-queue.git 5.9-stable patches added patches: spi-bcm2835-remove-use-of-uninitialized-gpio-flags-variable.patch --- diff --git a/queue-5.9/series b/queue-5.9/series index df234973ea3..c9f6825cf3e 100644 --- a/queue-5.9/series +++ b/queue-5.9/series @@ -123,3 +123,4 @@ i2c-sh_mobile-implement-atomic-transfers.patch i2c-designware-call-i2c_dw_read_clear_intrbits_slave.patch i2c-designware-slave-should-do-write_requested-befor.patch tpm_tis-disable-interrupts-on-thinkpad-t490s.patch +spi-bcm2835-remove-use-of-uninitialized-gpio-flags-variable.patch diff --git a/queue-5.9/spi-bcm2835-remove-use-of-uninitialized-gpio-flags-variable.patch b/queue-5.9/spi-bcm2835-remove-use-of-uninitialized-gpio-flags-variable.patch new file mode 100644 index 00000000000..34da91bf99b --- /dev/null +++ b/queue-5.9/spi-bcm2835-remove-use-of-uninitialized-gpio-flags-variable.patch @@ -0,0 +1,47 @@ +From bc7f2cd7559c5595dc38b909ae9a8d43e0215994 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Martin=20Hundeb=C3=B8ll?= +Date: Thu, 5 Nov 2020 10:06:15 +0100 +Subject: spi: bcm2835: remove use of uninitialized gpio flags variable +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +From: Martin Hundebøll + +commit bc7f2cd7559c5595dc38b909ae9a8d43e0215994 upstream. + +Removing the duplicate gpio chip select level handling in +bcm2835_spi_setup() left the lflags variable uninitialized. Avoid trhe +use of such variable by passing default flags to +gpiochip_request_own_desc(). + +Fixes: 5e31ba0c0543 ("spi: bcm2835: fix gpio cs level inversion") +Signed-off-by: Martin Hundebøll +Link: https://lore.kernel.org/r/20201105090615.620315-1-martin@geanix.com +Signed-off-by: Mark Brown +Cc: Nathan Chancellor +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/spi/spi-bcm2835.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +--- a/drivers/spi/spi-bcm2835.c ++++ b/drivers/spi/spi-bcm2835.c +@@ -1193,7 +1193,6 @@ static int bcm2835_spi_setup(struct spi_ + struct spi_controller *ctlr = spi->controller; + struct bcm2835_spi *bs = spi_controller_get_devdata(ctlr); + struct gpio_chip *chip; +- enum gpio_lookup_flags lflags; + u32 cs; + + /* +@@ -1261,7 +1260,7 @@ static int bcm2835_spi_setup(struct spi_ + + spi->cs_gpiod = gpiochip_request_own_desc(chip, 8 - spi->chip_select, + DRV_NAME, +- lflags, ++ GPIO_LOOKUP_FLAGS_DEFAULT, + GPIOD_OUT_LOW); + if (IS_ERR(spi->cs_gpiod)) + return PTR_ERR(spi->cs_gpiod);