From: Arvind Yadav Date: Thu, 17 Aug 2017 13:34:23 +0000 (+0530) Subject: tty: hvcs: constify vio_device_id X-Git-Tag: v4.14-rc1~149^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a846c3e5f338206c84e292a57abde0b06f1777c8;p=thirdparty%2Fkernel%2Flinux.git tty: hvcs: constify vio_device_id vio_device_id are not supposed to change at runtime. All functions working with vio_device_id provided by work with const vio_device_id. So mark the non-const structs as const. Signed-off-by: Arvind Yadav Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c index 79cc5beea2da2..7320190a5886e 100644 --- a/drivers/tty/hvc/hvcs.c +++ b/drivers/tty/hvc/hvcs.c @@ -675,7 +675,7 @@ static int khvcsd(void *unused) return 0; } -static struct vio_device_id hvcs_driver_table[] = { +static const struct vio_device_id hvcs_driver_table[] = { {"serial-server", "hvterm2"}, { "", "" } };