diff options
author | Krzysztof Kozlowski | 2023-05-07 16:48:07 +0200 |
---|---|---|
committer | Bartosz Golaszewski | 2023-05-11 11:06:44 +0200 |
commit | 8e84a8e69e3fa6aeb7720962f978bbd5a369c989 (patch) | |
tree | b5380c2403a45eb31fc952dfb42c23b44308f2f7 | |
parent | ac9a78681b921877518763ba0e89202254349d1b (diff) |
gpio: davinci: correct non-kerneldoc comment
Drop kerneldoc annotation from regular comment to fix:
gpio-davinci.c:716: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-davinci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c index aaaf61dc2632..3063e57a4174 100644 --- a/drivers/gpio/gpio-davinci.c +++ b/drivers/gpio/gpio-davinci.c @@ -712,7 +712,7 @@ static struct platform_driver davinci_gpio_driver = { }, }; -/** +/* * GPIO driver registration needs to be done before machine_init functions * access GPIO. Hence davinci_gpio_drv_reg() is a postcore_initcall. */ |