diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2022-10-04 18:09:13 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2022-10-19 15:26:57 +0200 |
commit | 4967a7803c341361a8bf67ace206bca8b390dc22 (patch) | |
tree | 2c95328b4d3c36506e393e78c38005d8939ed7ce /drivers/dma | |
parent | dmaengine: qcom: gpi: Document preferred SM6350 binding (diff) | |
download | linux-4967a7803c341361a8bf67ace206bca8b390dc22.tar.xz linux-4967a7803c341361a8bf67ace206bca8b390dc22.zip |
dmaengine: ioat: Fix spelling mistake "idel" -> "idle"
There is a spelling mistake in the module description. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Dave Jiang <dave.jiang@intel.com>
Link: https://lore.kernel.org/r/20221004160913.154739-1-colin.i.king@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/ioat/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ioat/dma.c b/drivers/dma/ioat/dma.c index e2070df6cad2..79d244011093 100644 --- a/drivers/dma/ioat/dma.c +++ b/drivers/dma/ioat/dma.c @@ -33,7 +33,7 @@ MODULE_PARM_DESC(completion_timeout, static int idle_timeout = 2000; module_param(idle_timeout, int, 0644); MODULE_PARM_DESC(idle_timeout, - "set ioat idel timeout [msec] (default 2000 [msec])"); + "set ioat idle timeout [msec] (default 2000 [msec])"); #define IDLE_TIMEOUT msecs_to_jiffies(idle_timeout) #define COMPLETION_TIMEOUT msecs_to_jiffies(completion_timeout) |