diff options
author | Vinod Koul <vkoul@kernel.org> | 2023-05-17 09:44:34 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2023-05-18 14:26:38 +0300 |
commit | 401f022cc5a2f0c521767d82c352d83aed944834 (patch) | |
tree | 3059f7f32e2543633f6b10dd81119a5abb16e741 /drivers/dma | |
parent | ef1e1c41a11d37069029bc0563c2fa6915d9880b (diff) | |
download | linux-401f022cc5a2f0c521767d82c352d83aed944834.tar.xz |
dmaengine: ste_dma40: fix typo in enum documentation
s/40_command/d40_command to fix the below warning reported:
drivers/dma/ste_dma40.c:151: warning: expecting prototype for enum 40_command.
Prototype was for enum d40_command instead
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20230517064434.141091-2-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/ste_dma40.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index 56c839241a53..2246a604256e 100644 --- a/drivers/dma/ste_dma40.c +++ b/drivers/dma/ste_dma40.c @@ -136,7 +136,7 @@ static const struct stedma40_chan_cfg dma40_memcpy_conf_log = { }; /** - * enum 40_command - The different commands and/or statuses. + * enum d40_command - The different commands and/or statuses. * * @D40_DMA_STOP: DMA channel command STOP or status STOPPED, * @D40_DMA_RUN: The DMA channel is RUNNING of the command RUN. |