Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: atomisp: Fix spelling mistake in hmm_bo.c

codespell reported misspelled unchanged in hmm_bo.c at two places.
This patch fixes the misspellings.

Signed-off-by: Roshan Khatri <topofeverest8848@gmail.com>
Link: https://lore.kernel.org/r/20240505132345.135528-1-topofeverest8848@gmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

authored by

Roshan Khatri and committed by
Hans Verkuil
0d0e892c 5b11fe4d

+2 -2
+2 -2
drivers/staging/media/atomisp/pci/hmm/hmm_bo.c
··· 288 288 /* 3. when bo->prev != NULL && bo->next == NULL, bo is not a rbtree 289 289 * node, bo is the last element of the linked list after rbtree 290 290 * node, to take off this bo, we just need set the "prev/next" 291 - * pointers to NULL, the free rbtree stays unchaged 291 + * pointers to NULL, the free rbtree stays unchanged 292 292 */ 293 293 } else if (bo->prev && !bo->next) { 294 294 bo->prev->next = NULL; ··· 296 296 /* 4. when bo->prev != NULL && bo->next != NULL ,bo is not a rbtree 297 297 * node, bo is in the middle of the linked list after rbtree node, 298 298 * to take off this bo, we just set take the "prev/next" pointers 299 - * to NULL, the free rbtree stays unchaged 299 + * to NULL, the free rbtree stays unchanged 300 300 */ 301 301 } else if (bo->prev && bo->next) { 302 302 bo->next->prev = bo->prev;