aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-ml-ioh.c
diff options
context:
space:
mode:
authorLee Jones <[email protected]>2020-06-30 13:33:38 +0000
committerAndy Shevchenko <[email protected]>2020-06-30 14:00:11 +0000
commit85b565c99eca5305d6f55e7855e27a427a81e6e6 (patch)
tree363d9fc8f8a842f804664f977db6908fa6c619bb /drivers/gpio/gpio-ml-ioh.c
parentpinctrl: at91: Make use of for_each_requested_gpio() (diff)
downloadkernel-85b565c99eca5305d6f55e7855e27a427a81e6e6.tar.gz
kernel-85b565c99eca5305d6f55e7855e27a427a81e6e6.zip
gpio: gpio-ml-ioh: Fix missing ':' in 'struct ioh_gpio_reg_data
'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 <[email protected]> Signed-off-by: Lee Jones <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]>
Diffstat (limited to 'drivers/gpio/gpio-ml-ioh.c')
-rw-r--r--drivers/gpio/gpio-ml-ioh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-ml-ioh.c b/drivers/gpio/gpio-ml-ioh.c
index 92b6e958cfed..53d4abefa6ff 100644
--- a/drivers/gpio/gpio-ml-ioh.c
+++ b/drivers/gpio/gpio-ml-ioh.c
@@ -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.