Commit da68e081 authored by Fabio Massimo Di Nitto's avatar Fabio Massimo Di Nitto Committed by David S. Miller

[SPARC64]: Fix MODULE_DEVICE_TABLE() specification in VDC and VNET.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bc5a2e64
......@@ -849,7 +849,7 @@ static struct vio_device_id vdc_port_match[] = {
},
{},
};
MODULE_DEVICE_TABLE(vio, vdc_match);
MODULE_DEVICE_TABLE(vio, vdc_port_match);
static struct vio_driver vdc_port_driver = {
.id_table = vdc_port_match,
......
......@@ -1136,7 +1136,7 @@ static struct vio_device_id vnet_port_match[] = {
},
{},
};
MODULE_DEVICE_TABLE(vio, vnet_match);
MODULE_DEVICE_TABLE(vio, vnet_port_match);
static struct vio_driver vnet_port_driver = {
.id_table = vnet_port_match,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment