diff mbox series

[1/2] gpiolib: constify label in gpio_device

Message ID 20171213112520.7479-1-brgl@bgdev.pl
State New
Headers show
Series [1/2] gpiolib: constify label in gpio_device | expand

Commit Message

Bartosz Golaszewski Dec. 13, 2017, 11:25 a.m. UTC
This string is never modified. Make it const.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
---
 drivers/gpio/gpiolib.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Linus Walleij Dec. 20, 2017, 8:02 a.m. UTC | #1
On Wed, Dec 13, 2017 at 12:25 PM, Bartosz Golaszewski <brgl@bgdev.pl> wrote:

> This string is never modified. Make it const.
>
> Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>

Patch applied.

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/gpio/gpiolib.h b/drivers/gpio/gpiolib.h
index 5e1f7cc6eeb6..6e9228b94437 100644
--- a/drivers/gpio/gpiolib.h
+++ b/drivers/gpio/gpiolib.h
@@ -58,7 +58,7 @@  struct gpio_device {
 	struct gpio_desc	*descs;
 	int			base;
 	u16			ngpio;
-	char			*label;
+	const char		*label;
 	void			*data;
 	struct list_head        list;