Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11640
b: refs/heads/master
c: 915124d
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Rothwell committed Oct 24, 2005
1 parent 2c8bb51 commit 0debd07
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7c7eb28481a038c3859a0efcf38ac5b642aca212
refs/heads/master: 915124d8114ec8c3825b10a39151bf9e851593bb
3 changes: 2 additions & 1 deletion trunk/drivers/block/viodasd.c
Original file line number Diff line number Diff line change
Expand Up @@ -778,14 +778,15 @@ static struct vio_device_id viodasd_device_table[] __devinitdata = {
{ "viodasd", "" },
{ "", "" }
};

MODULE_DEVICE_TABLE(vio, viodasd_device_table);

static struct vio_driver viodasd_driver = {
.id_table = viodasd_device_table,
.probe = viodasd_probe,
.remove = viodasd_remove,
.driver = {
.name = "viodasd",
.owner = THIS_MODULE,
}
};

Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/cdrom/viocd.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,14 +736,15 @@ static struct vio_device_id viocd_device_table[] __devinitdata = {
{ "viocd", "" },
{ "", "" }
};

MODULE_DEVICE_TABLE(vio, viocd_device_table);

static struct vio_driver viocd_driver = {
.id_table = viocd_device_table,
.probe = viocd_probe,
.remove = viocd_remove,
.driver = {
.name = "viocd",
.owner = THIS_MODULE,
}
};

Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/char/hvcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ static struct vio_driver hvcs_vio_driver = {
.remove = hvcs_remove,
.driver = {
.name = hvcs_driver_name,
.owner = THIS_MODULE,
}
};

Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/char/viotape.c
Original file line number Diff line number Diff line change
Expand Up @@ -993,14 +993,15 @@ static struct vio_device_id viotape_device_table[] __devinitdata = {
{ "viotape", "" },
{ "", "" }
};

MODULE_DEVICE_TABLE(vio, viotape_device_table);

static struct vio_driver viotape_driver = {
.id_table = viotape_device_table,
.probe = viotape_probe,
.remove = viotape_remove,
.driver = {
.name = "viotape",
.owner = THIS_MODULE,
}
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ibmveth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,6 @@ static struct vio_device_id ibmveth_device_table[] __devinitdata= {
{ "network", "IBM,l-lan"},
{ "", "" }
};

MODULE_DEVICE_TABLE(vio, ibmveth_device_table);

static struct vio_driver ibmveth_driver = {
Expand All @@ -1155,6 +1154,7 @@ static struct vio_driver ibmveth_driver = {
.remove = ibmveth_remove,
.driver = {
.name = ibmveth_driver_name,
.owner = THIS_MODULE,
}
};

Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/net/iseries_veth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1653,6 +1653,7 @@ static struct vio_driver veth_driver = {
.remove = veth_remove,
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
}
};

Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/scsi/ibmvscsi/ibmvscsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1543,14 +1543,15 @@ static struct vio_device_id ibmvscsi_device_table[] __devinitdata = {
{"vscsi", "IBM,v-scsi"},
{ "", "" }
};

MODULE_DEVICE_TABLE(vio, ibmvscsi_device_table);

static struct vio_driver ibmvscsi_driver = {
.id_table = ibmvscsi_device_table,
.probe = ibmvscsi_probe,
.remove = ibmvscsi_remove,
.driver = {
.name = "ibmvscsi",
.owner = THIS_MODULE,
}
};

Expand Down

0 comments on commit 0debd07

Please sign in to comment.