From: Paul Fulghum This fixes the synclink_gt driver so it compiles with the latest struct pci_driver changes that remove the owner field. Signed-off-by: Paul Fulghum Signed-off-by: Andrew Morton --- drivers/char/synclink_gt.c | 1 - 1 files changed, 1 deletion(-) diff -puN drivers/char/synclink_gt.c~new-char-driver-synclink_gt-fix drivers/char/synclink_gt.c --- 25/drivers/char/synclink_gt.c~new-char-driver-synclink_gt-fix Mon Nov 14 14:20:59 2005 +++ 25-akpm/drivers/char/synclink_gt.c Mon Nov 14 14:20:59 2005 @@ -111,7 +111,6 @@ MODULE_DEVICE_TABLE(pci, pci_table); static int init_one(struct pci_dev *dev,const struct pci_device_id *ent); static void remove_one(struct pci_dev *dev); static struct pci_driver pci_driver = { - .owner = THIS_MODULE, .name = "synclink_gt", .id_table = pci_table, .probe = init_one, _