Skip to content

Commit

Permalink
[SPARC64]: Fix MODULE_DEVICE_TABLE() specification in VDC and VNET.
Browse files Browse the repository at this point in the history
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Fabio Massimo Di Nitto authored and David S. Miller committed Jul 20, 2007
1 parent bc5a2e6 commit da68e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/block/sunvdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/sunvnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit da68e08

Please sign in to comment.