aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/viotape.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/viotape.c')
-rw-r--r--drivers/char/viotape.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/viotape.c b/drivers/char/viotape.c
index 8fc1115c4b69..d92a05645007 100644
--- a/drivers/char/viotape.c
+++ b/drivers/char/viotape.c
@@ -993,14 +993,15 @@ static struct vio_device_id viotape_device_table[] __devinitdata = {
993 { "viotape", "" }, 993 { "viotape", "" },
994 { "", "" } 994 { "", "" }
995}; 995};
996
997MODULE_DEVICE_TABLE(vio, viotape_device_table); 996MODULE_DEVICE_TABLE(vio, viotape_device_table);
997
998static struct vio_driver viotape_driver = { 998static struct vio_driver viotape_driver = {
999 .id_table = viotape_device_table, 999 .id_table = viotape_device_table,
1000 .probe = viotape_probe, 1000 .probe = viotape_probe,
1001 .remove = viotape_remove, 1001 .remove = viotape_remove,
1002 .driver = { 1002 .driver = {
1003 .name = "viotape", 1003 .name = "viotape",
1004 .owner = THIS_MODULE,
1004 } 1005 }
1005}; 1006};
1006 1007