mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
net: ibm: ibmvnic: 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>
This commit is contained in:
parent
71450804c6
commit
8c37bc677a
1 changed files with 1 additions and 1 deletions
|
@ -4022,7 +4022,7 @@ static int ibmvnic_resume(struct device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct vio_device_id ibmvnic_device_table[] = {
|
||||
static const struct vio_device_id ibmvnic_device_table[] = {
|
||||
{"network", "IBM,vnic"},
|
||||
{"", "" }
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue