From: Arvind Yadav Date: Thu, 17 Aug 2017 13:22:53 +0000 (+0530) Subject: net: ibm: ibmveth: constify vio_device_id X-Git-Tag: v4.14-rc1~130^2~220 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=71450804c689e4c601cb2a3f9c0ff7182cde84e6;p=platform%2Fkernel%2Flinux-rpi3.git net: ibm: ibmveth: 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: David S. Miller --- diff --git a/drivers/net/ethernet/ibm/ibmveth.c b/drivers/net/ethernet/ibm/ibmveth.c index d17c2b0..f210398 100644 --- a/drivers/net/ethernet/ibm/ibmveth.c +++ b/drivers/net/ethernet/ibm/ibmveth.c @@ -1897,7 +1897,7 @@ static int ibmveth_resume(struct device *dev) return 0; } -static struct vio_device_id ibmveth_device_table[] = { +static const struct vio_device_id ibmveth_device_table[] = { { "network", "IBM,l-lan"}, { "", "" } };