media: atomisp: Fix spelling errors reported by codespell
authorEverest K.C. <everestkc@everestkc.com.np>
Thu, 26 Sep 2024 22:23:37 +0000 (16:23 -0600)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 7 Nov 2024 14:16:06 +0000 (15:16 +0100)
Fixed spelling errors as follows:
unkonwn ==> unknown
Stablization ==> Stabilization
previouly ==> previously
acknowlede ==> acknowledge

Signed-off-by: Everest K.C. <everestkc@everestkc.com.np>
Reviewed-by: Andy Shevchenko <andy@kernel.org>
Link: https://lore.kernel.org/r/20240926222351.7116-1-everestkc@everestkc.com.np
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/atomisp/pci/atomisp_ioctl.c

index 0aaae52de6a09d23ab1b6c4c6b5062526e52a067..1a960a01854fd01d4a228ec9a9cfae1ff31842a0 100644 (file)
@@ -32,7 +32,7 @@ static const char *CARD = "ATOM ISP"; /* max size 31 */
 
 /*
  * FIXME: ISP should not know beforehand all CIDs supported by sensor.
- * Instead, it needs to propagate to sensor unkonwn CIDs.
+ * Instead, it needs to propagate to sensor unknown CIDs.
  */
 static struct v4l2_queryctrl ci_v4l2_controls[] = {
        {
@@ -101,7 +101,7 @@ static struct v4l2_queryctrl ci_v4l2_controls[] = {
        {
                .id = V4L2_CID_ATOMISP_VIDEO_STABLIZATION,
                .type = V4L2_CTRL_TYPE_INTEGER,
-               .name = "Video Stablization",
+               .name = "Video Stabilization",
                .minimum = 0,
                .maximum = 1,
                .step = 1,
@@ -667,7 +667,7 @@ static int atomisp_g_fmt_cap(struct file *file, void *fh,
 
        f->fmt.pix = pipe->pix;
 
-       /* If s_fmt was issued, just return whatever is was previouly set */
+       /* If s_fmt was issued, just return whatever is was previously set */
        if (f->fmt.pix.sizeimage)
                return 0;
 
@@ -1020,7 +1020,7 @@ void atomisp_stop_streaming(struct vb2_queue *vq)
        /*
         * ISP work around, need to reset ISP to allow next stream on to work.
         * Streams have already been destroyed by atomisp_css_stop().
-        * Disable PUNIT/ISP acknowlede/handshake - SRSE=3 and then reset.
+        * Disable PUNIT/ISP acknowledge/handshake - SRSE=3 and then reset.
         */
        pci_write_config_dword(pdev, PCI_I_CONTROL,
                               isp->saved_regs.i_control | MRFLD_PCI_I_CONTROL_SRSE_RESET_MASK);