diff options
author | Dave Jones <davej@redhat.com> | 2005-10-24 23:20:11 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2005-10-24 23:20:11 -0400 |
commit | ea248bcaadd5bafe4217357e1e511ac55639bcf3 (patch) | |
tree | 7d12e7f57cf9abf536fd992cefd17d95f7b31725 /drivers/char/agp/sworks-agp.c | |
parent | 0ea27d9f2fb5b998063323bff47ab87891ced9e2 (diff) |
[AGPGART] Set .owner field of struct pci_driver.
From: Laurent Riffard <laurent.riffard@free.fr>
This updates .owner field of struct pci_driver.
This allows SYSFS to create the symlink from the driver to the module which
provides it.
$ tree /sys/bus/pci/drivers/agpgart-via/
/sys/bus/pci/drivers/agpgart-via/
|-- 0000:00:00.0 -> ../../../../devices/pci0000:00/0000:00:00.0
|-- bind
|-- module -> ../../../../module/via_agp
|-- new_id
`-- unbind
Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'drivers/char/agp/sworks-agp.c')
-rw-r--r-- | drivers/char/agp/sworks-agp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/agp/sworks-agp.c b/drivers/char/agp/sworks-agp.c index 161d22b67fa3..94a855e1c0b5 100644 --- a/drivers/char/agp/sworks-agp.c +++ b/drivers/char/agp/sworks-agp.c | |||
@@ -543,6 +543,7 @@ static struct pci_device_id agp_serverworks_pci_table[] = { | |||
543 | MODULE_DEVICE_TABLE(pci, agp_serverworks_pci_table); | 543 | MODULE_DEVICE_TABLE(pci, agp_serverworks_pci_table); |
544 | 544 | ||
545 | static struct pci_driver agp_serverworks_pci_driver = { | 545 | static struct pci_driver agp_serverworks_pci_driver = { |
546 | .owner = THIS_MODULE, | ||
546 | .name = "agpgart-serverworks", | 547 | .name = "agpgart-serverworks", |
547 | .id_table = agp_serverworks_pci_table, | 548 | .id_table = agp_serverworks_pci_table, |
548 | .probe = agp_serverworks_probe, | 549 | .probe = agp_serverworks_probe, |