watchdog: sc1200: constify pnp_device_id

pnp_device_id are not supposed to change at runtime. All functions
working with pnp_device_id provided by <linux/pnp.h> work with
const pnp_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>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>

authored by

Arvind Yadav and committed by
Wim Van Sebroeck
39ad8089 82f6817f

+1 -1
+1 -1
drivers/watchdog/sc1200wdt.c
··· 342 343 #if defined CONFIG_PNP 344 345 - static struct pnp_device_id scl200wdt_pnp_devices[] = { 346 /* National Semiconductor PC87307/PC97307 watchdog component */ 347 {.id = "NSC0800", .driver_data = 0}, 348 {.id = ""},
··· 342 343 #if defined CONFIG_PNP 344 345 + static const struct pnp_device_id scl200wdt_pnp_devices[] = { 346 /* National Semiconductor PC87307/PC97307 watchdog component */ 347 {.id = "NSC0800", .driver_data = 0}, 348 {.id = ""},