aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2005-11-04 18:56:13 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2005-11-10 16:09:17 -0800
commit249bb070f5e821503c1118e1e87c0ccb1432d191 (patch)
tree8736af4ab6dfa5e95001194603225b96def849bb /include
parent[PATCH] PCI: automatically set device_driver.owner (diff)
downloadlinux-dev-249bb070f5e821503c1118e1e87c0ccb1432d191.tar.xz
linux-dev-249bb070f5e821503c1118e1e87c0ccb1432d191.zip
[PATCH] PCI: removed unneeded .owner field from struct pci_driver
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/pci.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 60702fccf9e7..de690ca73d58 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -236,7 +236,6 @@ struct module;
struct pci_driver {
struct list_head node;
char *name;
- struct module *owner;
const struct pci_device_id *id_table; /* must be non-NULL for probe to be called */
int (*probe) (struct pci_dev *dev, const struct pci_device_id *id); /* New device inserted */
void (*remove) (struct pci_dev *dev); /* Device removed (NULL if not a hot-plug capable driver) */