diff options
author | Dipendra Khadka <[email protected]> | 2023-12-23 08:11:57 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2024-02-01 06:59:55 +0100 |
commit | b68a8c794667e2db78dc794092c9c6e6cbb7b360 (patch) | |
tree | 44649e259ef1356cec33f5788b5e7860615d4269 | |
parent | 8cf2ae5c2868956dfa09397e91925515cf1e6ba9 (diff) |
media: atomisp: Fix spelling mistakes in queue.c
codespell reported following spelling mistake
in queue.c as below:
'''
./runtime/queue/src/queue.c:126: uncessary ==> unnecessary
./runtime/queue/src/queue.c:183: uncessary ==> unnecessary
'''
This patch fixes these spelling mistakes.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dipendra Khadka <[email protected]>
Signed-off-by: Hans de Goede <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/staging/media/atomisp/pci/runtime/queue/src/queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/media/atomisp/pci/runtime/queue/src/queue.c b/drivers/staging/media/atomisp/pci/runtime/queue/src/queue.c index c4d4062206a2..0e430388b331 100644 --- a/drivers/staging/media/atomisp/pci/runtime/queue/src/queue.c +++ b/drivers/staging/media/atomisp/pci/runtime/queue/src/queue.c @@ -123,7 +123,7 @@ int ia_css_queue_enqueue(ia_css_queue_t *qhandle, uint32_t item) /* c. Store the queue object */ /* Set only fields requiring update with - * valid value. Avoids uncessary calls + * valid value. Avoids unnecessary calls * to load/store functions */ ignore_desc_flags = QUEUE_IGNORE_SIZE_START_STEP_FLAGS; @@ -180,7 +180,7 @@ int ia_css_queue_dequeue(ia_css_queue_t *qhandle, uint32_t *item) /* c. Store the queue object */ /* Set only fields requiring update with - * valid value. Avoids uncessary calls + * valid value. Avoids unnecessary calls * to load/store functions */ ignore_desc_flags = QUEUE_IGNORE_SIZE_END_STEP_FLAGS; |