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 'mmc-v5.9-rc4-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc

Pull MMC fix from Ulf Hansson:
"Fix build warning in mmc_spi when CONFIG_HAS_DMA is unset"

* tag 'mmc-v5.9-rc4-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc:
mmc: mmc_spi: Fix mmc_spi_dma_alloc() return type for !HAS_DMA

+1 -1
+1 -1
drivers/mmc/host/mmc_spi.c
··· 1320 1320 DMA_BIDIRECTIONAL); 1321 1321 } 1322 1322 #else 1323 - static inline mmc_spi_dma_alloc(struct mmc_spi_host *host) { return 0; } 1323 + static inline int mmc_spi_dma_alloc(struct mmc_spi_host *host) { return 0; } 1324 1324 static inline void mmc_spi_dma_free(struct mmc_spi_host *host) {} 1325 1325 #endif 1326 1326