diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-10-24 15:12:22 +1000 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-10-24 16:59:13 +1000 |
commit | 915124d8114ec8c3825b10a39151bf9e851593bb (patch) | |
tree | 854dd90a4ec252c6282abb2570424c7d17656114 /drivers/char/viotape.c | |
parent | 7c7eb28481a038c3859a0efcf38ac5b642aca212 (diff) |
powerpc: set the driver.owner field for all vio drivers
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'drivers/char/viotape.c')
-rw-r--r-- | drivers/char/viotape.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/viotape.c b/drivers/char/viotape.c index 8fc1115c4b6..d92a0564500 100644 --- a/drivers/char/viotape.c +++ b/drivers/char/viotape.c @@ -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, } }; |