Browse Source

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 <asm/vio.h> work with
const vio_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Arvind Yadav 8 years ago
parent
commit
71450804c6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/ethernet/ibm/ibmveth.c

+ 1 - 1
drivers/net/ethernet/ibm/ibmveth.c

@@ -1897,7 +1897,7 @@ static int ibmveth_resume(struct device *dev)
 	return 0;
 	return 0;
 }
 }
 
 
-static struct vio_device_id ibmveth_device_table[] = {
+static const struct vio_device_id ibmveth_device_table[] = {
 	{ "network", "IBM,l-lan"},
 	{ "network", "IBM,l-lan"},
 	{ "", "" }
 	{ "", "" }
 };
 };