From: Arvind Yadav Date: Thu, 17 Aug 2017 13:34:23 +0000 (+0530) Subject: tty: hvcs: constify vio_device_id X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a846c3e5f338206c84e292a57abde0b06f1777c8;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.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 79cc5beea2da..7320190a5886 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"}, { "", "" } };