]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
gpio: gpio-ml-ioh: Fix missing ':' in 'struct ioh_gpio_reg_data
authorLee Jones <lee.jones@linaro.org>
Tue, 30 Jun 2020 13:33:38 +0000 (14:33 +0100)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 30 Jun 2020 14:00:11 +0000 (17:00 +0300)
'struct ioh_gpio_reg_data's 'ien_reg' property is missing a ':'
which confuses the kerneldoc tooling/parsers/validators.

Replacing it squashes the following W=1 warning:

 drivers/gpio/gpio-ml-ioh.c:63: warning: Function parameter or member 'ien_reg' not described in 'ioh_gpio_reg_data'

Cc: Andy Shevchenko <andy@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
drivers/gpio/gpio-ml-ioh.c

index 92b6e958cfed5a3bd5960e22412288fc575cf621..53d4abefa6ff29f6d71ad8b6358974290a4e0f2b 100644 (file)
@@ -44,7 +44,7 @@ struct ioh_regs {
 
 /**
  * struct ioh_gpio_reg_data - The register store data.
- * @ien_reg    To store contents of interrupt enable register.
+ * @ien_reg:   To store contents of interrupt enable register.
  * @imask_reg: To store contents of interrupt mask regist
  * @po_reg:    To store contents of PO register.
  * @pm_reg:    To store contents of PM register.