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.

dmaengine: qcom: qcom-gpi-dma.h: fix all kernel-doc warnings

Add missing enum descriptions and spell one struct member correctly
to avoid kernel-doc warnings:

Warning: include/linux/dma/qcom-gpi-dma.h:15 Enum value 'SPI_TX' not
described in enum 'spi_transfer_cmd'
Warning: include/linux/dma/qcom-gpi-dma.h:15 Enum value 'SPI_RX' not
described in enum 'spi_transfer_cmd'
Warning: include/linux/dma/qcom-gpi-dma.h:15 Enum value 'SPI_DUPLEX' not
described in enum 'spi_transfer_cmd'
Warning: include/linux/dma/qcom-gpi-dma.h:80 struct member 'multi_msg' not
described in 'gpi_i2c_config'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://patch.msgid.link/20260301011203.3062658-1-rdunlap@infradead.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Randy Dunlap and committed by
Vinod Koul
7b84a00d 70fbea9f

+4 -1
+4 -1
include/linux/dma/qcom-gpi-dma.h
··· 8 8 9 9 /** 10 10 * enum spi_transfer_cmd - spi transfer commands 11 + * @SPI_TX: SPI peripheral TX command 12 + * @SPI_RX: SPI peripheral RX command 13 + * @SPI_DUPLEX: SPI peripheral Duplex command 11 14 */ 12 15 enum spi_transfer_cmd { 13 16 SPI_TX = 1, ··· 67 64 * @set_config: set peripheral config 68 65 * @rx_len: receive length for buffer 69 66 * @op: i2c cmd 70 - * @muli-msg: is part of multi i2c r-w msgs 67 + * @multi_msg: is part of multi i2c r-w msgs 71 68 */ 72 69 struct gpi_i2c_config { 73 70 u8 set_config;