Input: correct typos in multiple comments across misc drivers
authorShen Lichuan <shenlichuan@vivo.com>
Thu, 26 Sep 2024 07:55:15 +0000 (15:55 +0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 30 Sep 2024 15:00:16 +0000 (08:00 -0700)
Fixed some confusing typos that were currently identified witch codespell,
the details are as follows:

-in the code comments:
drivers/input/misc/drv2665.c:18: Contol ==> Control
drivers/input/misc/drv2667.c:19: Contol ==> Control
drivers/input/misc/ideapad_slidebar.c:26: meaningfull ==> meaningful
drivers/input/misc/ims-pcu.c:742: bootoloader ==> bootloader
drivers/input/misc/kxtj9.c:28: funtion ==> function
drivers/input/misc/soc_button_array.c:518: indentical ==> identical
drivers/input/misc/wistron_btns.c:274: satelite ==> satellite
drivers/input/misc/yealink.c:380: singe ==> single
drivers/input/misc/yealink.c:617: coresponding ==> corresponding

Signed-off-by: Shen Lichuan <shenlichuan@vivo.com>
Link: https://lore.kernel.org/r/20240926075515.10042-1-shenlichuan@vivo.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/misc/drv2665.c
drivers/input/misc/drv2667.c
drivers/input/misc/ideapad_slidebar.c
drivers/input/misc/ims-pcu.c
drivers/input/misc/kxtj9.c
drivers/input/misc/soc_button_array.c
drivers/input/misc/wistron_btns.c
drivers/input/misc/yealink.c

index f98e4d7..59ad699 100644 (file)
@@ -15,7 +15,7 @@
 #include <linux/delay.h>
 #include <linux/regulator/consumer.h>
 
-/* Contol registers */
+/* Control registers */
 #define DRV2665_STATUS 0x00
 #define DRV2665_CTRL_1 0x01
 #define DRV2665_CTRL_2 0x02
index ad49845..b53231d 100644 (file)
@@ -16,7 +16,7 @@
 #include <linux/delay.h>
 #include <linux/regulator/consumer.h>
 
-/* Contol registers */
+/* Control registers */
 #define DRV2667_STATUS 0x00
 #define DRV2667_CTRL_1 0x01
 #define DRV2667_CTRL_2 0x02
index fa4e7f6..7f1b369 100644 (file)
@@ -23,7 +23,7 @@
  *
  * The value is in byte range, however, I only figured out
  * how bits 0b10011001 work. Some other bits, probably,
- * are meaningfull too.
+ * are meaningful too.
  *
  * Possible states:
  *
index 058f347..f687e88 100644 (file)
@@ -739,7 +739,7 @@ static int ims_pcu_switch_to_bootloader(struct ims_pcu *pcu)
 {
        int error;
 
-       /* Execute jump to the bootoloader */
+       /* Execute jump to the bootloader */
        error = ims_pcu_execute_command(pcu, JUMP_TO_BTLDR, NULL, 0);
        if (error) {
                dev_err(pcu->dev,
index 837682c..2f301eb 100644 (file)
@@ -25,7 +25,7 @@
 /* CONTROL REGISTER 1 BITS */
 #define PC1_OFF                        0x7F
 #define PC1_ON                 (1 << 7)
-/* Data ready funtion enable bit: set during probe if using irq mode */
+/* Data ready function enable bit: set during probe if using irq mode */
 #define DRDYE                  (1 << 5)
 /* DATA CONTROL REGISTER BITS */
 #define ODR12_5F               0
index 5c5d407..e8f3737 100644 (file)
@@ -515,7 +515,7 @@ static const struct soc_device_data soc_device_INT33D3 = {
 };
 
 /*
- * Button info for Microsoft Surface 3 (non pro), this is indentical to
+ * Button info for Microsoft Surface 3 (non pro), this is identical to
  * the PNP0C40 info except that the home button is active-high.
  *
  * The Surface 3 Pro also has a MSHW0028 ACPI device, but that uses a custom
index 907b1a4..5c28ef4 100644 (file)
@@ -271,7 +271,7 @@ static struct key_entry keymap_fs_amilo_pro_v8210[] __initdata = {
        { KE_BLUETOOTH, 0x30 },                      /* Fn+F10 */
        { KE_KEY,       0x31, {KEY_MAIL} },          /* mail button */
        { KE_KEY,       0x36, {KEY_WWW} },           /* www button */
-       { KE_WIFI,      0x78 },                      /* satelite dish button */
+       { KE_WIFI,      0x78 },                      /* satellite dish button */
        { KE_END,       FE_WIFI_LED }
 };
 
index 8866bf6..08dc53a 100644 (file)
@@ -377,7 +377,7 @@ send_update:
                if (len > sizeof(yld->ctl_data->data))
                        len = sizeof(yld->ctl_data->data);
 
-               /* Combine up to <len> consecutive LCD bytes in a singe request
+               /* Combine up to <len> consecutive LCD bytes in a single request
                 */
                yld->ctl_data->cmd      = CMD_LCD;
                yld->ctl_data->offset   = cpu_to_be16(ix);
@@ -614,7 +614,7 @@ static ssize_t show_line3(struct device *dev, struct device_attribute *attr,
        return show_line(dev, buf, LCD_LINE3_OFFSET, LCD_LINE4_OFFSET);
 }
 
-/* Writing to /sys/../lineX will set the coresponding LCD line.
+/* Writing to /sys/../lineX will set the corresponding LCD line.
  * - Excess characters are ignored.
  * - If less characters are written than allowed, the remaining digits are
  *   unchanged.