diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-15 22:51:47 -0700 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-06-28 13:03:59 +0530 |
commit | 6c026a3e4ecf68616c6ea0beb0d7a3462ae6f843 (patch) | |
tree | 2a67529e28a0b5393e022109ffff78bea88d0c1e /drivers/dma | |
parent | 4db6b030257283166a11de3731a39f4f7ab9656e (diff) | |
download | lwn-6c026a3e4ecf68616c6ea0beb0d7a3462ae6f843.tar.gz lwn-6c026a3e4ecf68616c6ea0beb0d7a3462ae6f843.zip |
dmaengine: ti: cppi41: add missing MODULE_DESCRIPTION() macro
With ARCH=arm, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/ti/cppi41.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240615-md-arm-drivers-dma-ti-v1-1-496d243158dd@quicinc.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/ti/cppi41.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/ti/cppi41.c b/drivers/dma/ti/cppi41.c index 7e0b06b5dff0..a8bb70c2d109 100644 --- a/drivers/dma/ti/cppi41.c +++ b/drivers/dma/ti/cppi41.c @@ -1252,5 +1252,6 @@ static struct platform_driver cpp41_dma_driver = { }; module_platform_driver(cpp41_dma_driver); +MODULE_DESCRIPTION("Texas Instruments CPPI 4.1 DMA support"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Sebastian Andrzej Siewior <bigeasy@linutronix.de>"); |