Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'spi-fix-v5.10-rc2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi

Pull spi fix from Mark Brown:
"This is an additional fix on top of 5e31ba0c0543 ('spi: bcm2835: fix
gpio cs level inversion') - when sending my prior pull request I had
misremembred the status of that patch, apologies for the noise here"

* tag 'spi-fix-v5.10-rc2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi:
spi: bcm2835: remove use of uninitialized gpio flags variable

+1 -2
+1 -2
drivers/spi/spi-bcm2835.c
··· 1193 1193 struct spi_controller *ctlr = spi->controller; 1194 1194 struct bcm2835_spi *bs = spi_controller_get_devdata(ctlr); 1195 1195 struct gpio_chip *chip; 1196 - enum gpio_lookup_flags lflags; 1197 1196 u32 cs; 1198 1197 1199 1198 /* ··· 1260 1261 1261 1262 spi->cs_gpiod = gpiochip_request_own_desc(chip, 8 - spi->chip_select, 1262 1263 DRV_NAME, 1263 - lflags, 1264 + GPIO_LOOKUP_FLAGS_DEFAULT, 1264 1265 GPIOD_OUT_LOW); 1265 1266 if (IS_ERR(spi->cs_gpiod)) 1266 1267 return PTR_ERR(spi->cs_gpiod);