All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: udl: constify usb_device_id
@ 2017-08-12  8:35 Arvind Yadav
  2017-08-12  8:38 ` [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error Arvind Yadav
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Arvind Yadav @ 2017-08-12  8:35 UTC (permalink / raw)
  To: airlied, airlied; +Cc: dri-devel, linux-kernel

usb_device_id are not supposed to change at runtime. All functions
working with usb_device_id provided by <linux/usb.h> work with
const usb_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/gpu/drm/udl/udl_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/udl/udl_drv.c b/drivers/gpu/drm/udl/udl_drv.c
index cd8b017..2877afc 100644
--- a/drivers/gpu/drm/udl/udl_drv.c
+++ b/drivers/gpu/drm/udl/udl_drv.c
@@ -118,7 +118,7 @@ static void udl_usb_disconnect(struct usb_interface *interface)
  * which is compatible with all known USB 2.0 era graphics chips and firmware,
  * but allows DisplayLink to increment those for any future incompatible chips
  */
-static struct usb_device_id id_table[] = {
+static const struct usb_device_id id_table[] = {
 	{.idVendor = 0x17e9, .bInterfaceClass = 0xff,
 	 .bInterfaceSubClass = 0x00,
 	 .bInterfaceProtocol = 0x00,
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error
  2017-08-12  8:35 [PATCH] drm: udl: constify usb_device_id Arvind Yadav
@ 2017-08-12  8:38 ` Arvind Yadav
  2017-09-05 13:25     ` Evgeniy Polyakov
  2017-08-12  8:39 ` [PATCH] watchdog: pcwd_usb: constify usb_device_id Arvind Yadav
  2017-08-14 14:12   ` Daniel Vetter
  2 siblings, 1 reply; 8+ messages in thread
From: Arvind Yadav @ 2017-08-12  8:38 UTC (permalink / raw)
  To: zbr, gregkh; +Cc: linux-kernel

usb_device_id are not supposed to change at runtime. All functions
working with usb_device_id provided by <linux/usb.h> work with
const usb_device_id. So mark the non-const structs as const.

Fix checkpatch.pl error:
ERROR: space prohibited before open square bracket '['.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/w1/masters/ds2490.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/w1/masters/ds2490.c b/drivers/w1/masters/ds2490.c
index 46ccb2f..a02da9a 100644
--- a/drivers/w1/masters/ds2490.c
+++ b/drivers/w1/masters/ds2490.c
@@ -1088,7 +1088,7 @@ static void ds_disconnect(struct usb_interface *intf)
 	kfree(dev);
 }
 
-static struct usb_device_id ds_id_table [] = {
+static const struct usb_device_id ds_id_table[] = {
 	{ USB_DEVICE(0x04fa, 0x2490) },
 	{ },
 };
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH] watchdog: pcwd_usb: constify usb_device_id
  2017-08-12  8:35 [PATCH] drm: udl: constify usb_device_id Arvind Yadav
  2017-08-12  8:38 ` [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error Arvind Yadav
@ 2017-08-12  8:39 ` Arvind Yadav
  2017-08-14 14:49   ` Guenter Roeck
  2017-08-14 14:12   ` Daniel Vetter
  2 siblings, 1 reply; 8+ messages in thread
From: Arvind Yadav @ 2017-08-12  8:39 UTC (permalink / raw)
  To: wim, linux; +Cc: linux-watchdog, linux-kernel

usb_device_id are not supposed to change at runtime. All functions
working with usb_device_id provided by <linux/usb.h> work with
const usb_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/watchdog/pcwd_usb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/watchdog/pcwd_usb.c b/drivers/watchdog/pcwd_usb.c
index 5615f40..b9e376c 100644
--- a/drivers/watchdog/pcwd_usb.c
+++ b/drivers/watchdog/pcwd_usb.c
@@ -74,7 +74,7 @@ MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
 #define USB_PCWD_PRODUCT_ID	0x1140
 
 /* table of devices that work with this driver */
-static struct usb_device_id usb_pcwd_table[] = {
+static const struct usb_device_id usb_pcwd_table[] = {
 	{ USB_DEVICE(USB_PCWD_VENDOR_ID, USB_PCWD_PRODUCT_ID) },
 	{ }					/* Terminating entry */
 };
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm: udl: constify usb_device_id
  2017-08-12  8:35 [PATCH] drm: udl: constify usb_device_id Arvind Yadav
@ 2017-08-14 14:12   ` Daniel Vetter
  2017-08-12  8:39 ` [PATCH] watchdog: pcwd_usb: constify usb_device_id Arvind Yadav
  2017-08-14 14:12   ` Daniel Vetter
  2 siblings, 0 replies; 8+ messages in thread
From: Daniel Vetter @ 2017-08-14 14:12 UTC (permalink / raw)
  To: Arvind Yadav; +Cc: airlied, airlied, linux-kernel, dri-devel

On Sat, Aug 12, 2017 at 02:05:19PM +0530, Arvind Yadav wrote:
> usb_device_id are not supposed to change at runtime. All functions
> working with usb_device_id provided by <linux/usb.h> work with
> const usb_device_id. So mark the non-const structs as const.
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>

Applied, thanks.
-Daniel

> ---
>  drivers/gpu/drm/udl/udl_drv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/udl/udl_drv.c b/drivers/gpu/drm/udl/udl_drv.c
> index cd8b017..2877afc 100644
> --- a/drivers/gpu/drm/udl/udl_drv.c
> +++ b/drivers/gpu/drm/udl/udl_drv.c
> @@ -118,7 +118,7 @@ static void udl_usb_disconnect(struct usb_interface *interface)
>   * which is compatible with all known USB 2.0 era graphics chips and firmware,
>   * but allows DisplayLink to increment those for any future incompatible chips
>   */
> -static struct usb_device_id id_table[] = {
> +static const struct usb_device_id id_table[] = {
>  	{.idVendor = 0x17e9, .bInterfaceClass = 0xff,
>  	 .bInterfaceSubClass = 0x00,
>  	 .bInterfaceProtocol = 0x00,
> -- 
> 2.7.4
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm: udl: constify usb_device_id
@ 2017-08-14 14:12   ` Daniel Vetter
  0 siblings, 0 replies; 8+ messages in thread
From: Daniel Vetter @ 2017-08-14 14:12 UTC (permalink / raw)
  To: Arvind Yadav; +Cc: airlied, linux-kernel, dri-devel

On Sat, Aug 12, 2017 at 02:05:19PM +0530, Arvind Yadav wrote:
> usb_device_id are not supposed to change at runtime. All functions
> working with usb_device_id provided by <linux/usb.h> work with
> const usb_device_id. So mark the non-const structs as const.
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>

Applied, thanks.
-Daniel

> ---
>  drivers/gpu/drm/udl/udl_drv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/udl/udl_drv.c b/drivers/gpu/drm/udl/udl_drv.c
> index cd8b017..2877afc 100644
> --- a/drivers/gpu/drm/udl/udl_drv.c
> +++ b/drivers/gpu/drm/udl/udl_drv.c
> @@ -118,7 +118,7 @@ static void udl_usb_disconnect(struct usb_interface *interface)
>   * which is compatible with all known USB 2.0 era graphics chips and firmware,
>   * but allows DisplayLink to increment those for any future incompatible chips
>   */
> -static struct usb_device_id id_table[] = {
> +static const struct usb_device_id id_table[] = {
>  	{.idVendor = 0x17e9, .bInterfaceClass = 0xff,
>  	 .bInterfaceSubClass = 0x00,
>  	 .bInterfaceProtocol = 0x00,
> -- 
> 2.7.4
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] watchdog: pcwd_usb: constify usb_device_id
  2017-08-12  8:39 ` [PATCH] watchdog: pcwd_usb: constify usb_device_id Arvind Yadav
@ 2017-08-14 14:49   ` Guenter Roeck
  0 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2017-08-14 14:49 UTC (permalink / raw)
  To: Arvind Yadav; +Cc: wim, linux-watchdog, linux-kernel

On Sat, Aug 12, 2017 at 02:09:45PM +0530, Arvind Yadav wrote:
> usb_device_id are not supposed to change at runtime. All functions
> working with usb_device_id provided by <linux/usb.h> work with
> const usb_device_id. So mark the non-const structs as const.
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>  drivers/watchdog/pcwd_usb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/watchdog/pcwd_usb.c b/drivers/watchdog/pcwd_usb.c
> index 5615f40..b9e376c 100644
> --- a/drivers/watchdog/pcwd_usb.c
> +++ b/drivers/watchdog/pcwd_usb.c
> @@ -74,7 +74,7 @@ MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
>  #define USB_PCWD_PRODUCT_ID	0x1140
>  
>  /* table of devices that work with this driver */
> -static struct usb_device_id usb_pcwd_table[] = {
> +static const struct usb_device_id usb_pcwd_table[] = {
>  	{ USB_DEVICE(USB_PCWD_VENDOR_ID, USB_PCWD_PRODUCT_ID) },
>  	{ }					/* Terminating entry */
>  };
> -- 
> 2.7.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error
  2017-08-12  8:38 ` [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error Arvind Yadav
@ 2017-09-05 13:25     ` Evgeniy Polyakov
  0 siblings, 0 replies; 8+ messages in thread
From: Evgeniy Polyakov @ 2017-09-05 13:25 UTC (permalink / raw)
  To: Arvind Yadav, gregkh; +Cc: linux-kernel, kernel-janitors

Hi Arvind

12.08.2017, 11:38, "Arvind Yadav" <arvind.yadav.cs@gmail.com>:
> usb_device_id are not supposed to change at runtime. All functions
> working with usb_device_id provided by <linux/usb.h> work with
> const usb_device_id. So mark the non-const structs as const.
>
> Fix checkpatch.pl error:
> ERROR: space prohibited before open square bracket '['.
>
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>

Looks good to me, thank you
kernel-janitors@ please queue this up

Acked-by: Evgeniy Polyakov <zbr@ioremap.net>

> ---
>  drivers/w1/masters/ds2490.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/w1/masters/ds2490.c b/drivers/w1/masters/ds2490.c
> index 46ccb2f..a02da9a 100644
> --- a/drivers/w1/masters/ds2490.c
> +++ b/drivers/w1/masters/ds2490.c
> @@ -1088,7 +1088,7 @@ static void ds_disconnect(struct usb_interface *intf)
>          kfree(dev);
>  }
>
> -static struct usb_device_id ds_id_table [] = {
> +static const struct usb_device_id ds_id_table[] = {
>          { USB_DEVICE(0x04fa, 0x2490) },
>          { },
>  };
> --
> 2.7.4

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error
@ 2017-09-05 13:25     ` Evgeniy Polyakov
  0 siblings, 0 replies; 8+ messages in thread
From: Evgeniy Polyakov @ 2017-09-05 13:25 UTC (permalink / raw)
  To: Arvind Yadav, gregkh; +Cc: linux-kernel, kernel-janitors

Hi Arvind

12.08.2017, 11:38, "Arvind Yadav" <arvind.yadav.cs@gmail.com>:
> usb_device_id are not supposed to change at runtime. All functions
> working with usb_device_id provided by <linux/usb.h> work with
> const usb_device_id. So mark the non-const structs as const.
>
> Fix checkpatch.pl error:
> ERROR: space prohibited before open square bracket '['.
>
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>

Looks good to me, thank you
kernel-janitors@ please queue this up

Acked-by: Evgeniy Polyakov <zbr@ioremap.net>

> ---
>  drivers/w1/masters/ds2490.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/w1/masters/ds2490.c b/drivers/w1/masters/ds2490.c
> index 46ccb2f..a02da9a 100644
> --- a/drivers/w1/masters/ds2490.c
> +++ b/drivers/w1/masters/ds2490.c
> @@ -1088,7 +1088,7 @@ static void ds_disconnect(struct usb_interface *intf)
>          kfree(dev);
>  }
>
> -static struct usb_device_id ds_id_table [] = {
> +static const struct usb_device_id ds_id_table[] = {
>          { USB_DEVICE(0x04fa, 0x2490) },
>          { },
>  };
> --
> 2.7.4

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-09-05 13:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-12  8:35 [PATCH] drm: udl: constify usb_device_id Arvind Yadav
2017-08-12  8:38 ` [PATCH] w1: ds2490: constify usb_device_id and fix space before '[' error Arvind Yadav
2017-09-05 13:25   ` Evgeniy Polyakov
2017-09-05 13:25     ` Evgeniy Polyakov
2017-08-12  8:39 ` [PATCH] watchdog: pcwd_usb: constify usb_device_id Arvind Yadav
2017-08-14 14:49   ` Guenter Roeck
2017-08-14 14:12 ` [PATCH] drm: udl: " Daniel Vetter
2017-08-14 14:12   ` Daniel Vetter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.