Use a different markup for the ERR_PTR, as %FOO doesn't work
if there are parenthesis. So, use, instead:
``ERR_PTR(-EINVAL)``
This fixes the following warning:
./drivers/gpio/gpiolib.c:139: WARNING: Inline literal start-string without end-string.
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
---
drivers/gpio/gpiolib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index f31b1d46599e..74d8973025da 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -136,7 +136,7 @@ EXPORT_SYMBOL_GPL(gpio_to_desc);
* @hwnum: hardware number of the GPIO for this chip
*
* Returns:
- * A pointer to the GPIO descriptor or %ERR_PTR(-EINVAL) if no GPIO exists
+ * A pointer to the GPIO descriptor or ``ERR_PTR(-EINVAL)`` if no GPIO exists
* in the given chip for the specified hardware number.
*/
struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
--
2.24.1
wt., 17 mar 2020 o 15:54 Mauro Carvalho Chehab
<[email protected]> napisaĆ(a):
>
> Use a different markup for the ERR_PTR, as %FOO doesn't work
> if there are parenthesis. So, use, instead:
>
> ``ERR_PTR(-EINVAL)``
>
> This fixes the following warning:
>
> ./drivers/gpio/gpiolib.c:139: WARNING: Inline literal start-string without end-string.
>
> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
> ---
> drivers/gpio/gpiolib.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
> index f31b1d46599e..74d8973025da 100644
> --- a/drivers/gpio/gpiolib.c
> +++ b/drivers/gpio/gpiolib.c
> @@ -136,7 +136,7 @@ EXPORT_SYMBOL_GPL(gpio_to_desc);
> * @hwnum: hardware number of the GPIO for this chip
> *
> * Returns:
> - * A pointer to the GPIO descriptor or %ERR_PTR(-EINVAL) if no GPIO exists
> + * A pointer to the GPIO descriptor or ``ERR_PTR(-EINVAL)`` if no GPIO exists
> * in the given chip for the specified hardware number.
> */
> struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
> --
> 2.24.1
>
Reviewed-by: Bartosz Golaszewski <[email protected]>
On Tue, Mar 17, 2020 at 3:54 PM Mauro Carvalho Chehab
<[email protected]> wrote:
> Use a different markup for the ERR_PTR, as %FOO doesn't work
> if there are parenthesis. So, use, instead:
>
> ``ERR_PTR(-EINVAL)``
>
> This fixes the following warning:
>
> ./drivers/gpio/gpiolib.c:139: WARNING: Inline literal start-string without end-string.
>
> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Mauro are you merging this or do you want me to merge it?
Yours,
Linus Walleij
Em Fri, 27 Mar 2020 11:22:52 +0100
Linus Walleij <[email protected]> escreveu:
> On Tue, Mar 17, 2020 at 3:54 PM Mauro Carvalho Chehab
> <[email protected]> wrote:
>
> > Use a different markup for the ERR_PTR, as %FOO doesn't work
> > if there are parenthesis. So, use, instead:
> >
> > ``ERR_PTR(-EINVAL)``
> >
> > This fixes the following warning:
> >
> > ./drivers/gpio/gpiolib.c:139: WARNING: Inline literal start-string without end-string.
> >
> > Signed-off-by: Mauro Carvalho Chehab <[email protected]>
>
> Reviewed-by: Linus Walleij <[email protected]>
>
> Mauro are you merging this or do you want me to merge it?
Feel free to merge it.
My plan is to rebase my trees after the merge window, re-sending
anything that got missed for them to be either applied directly
or via the docs tree.
Thanks,
Mauro
On Tue, Mar 17, 2020 at 3:54 PM Mauro Carvalho Chehab
<[email protected]> wrote:
> Use a different markup for the ERR_PTR, as %FOO doesn't work
> if there are parenthesis. So, use, instead:
>
> ``ERR_PTR(-EINVAL)``
>
> This fixes the following warning:
>
> ./drivers/gpio/gpiolib.c:139: WARNING: Inline literal start-string without end-string.
>
> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Patch applied.
Yours,
Linus Walleij