diff options
author | Dave Jones <davej@redhat.com> | 2005-10-24 20:20:11 -0700 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2005-10-24 20:20:11 -0700 |
commit | ea248bcaadd5bafe4217357e1e511ac55639bcf3 (patch) | |
tree | 7d12e7f57cf9abf536fd992cefd17d95f7b31725 /drivers/char/agp/sis-agp.c | |
parent | 0ea27d9f2fb5b998063323bff47ab87891ced9e2 (diff) | |
download | linux-ea248bcaadd5bafe4217357e1e511ac55639bcf3.tar.gz linux-ea248bcaadd5bafe4217357e1e511ac55639bcf3.tar.bz2 linux-ea248bcaadd5bafe4217357e1e511ac55639bcf3.zip |
[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/sis-agp.c')
-rw-r--r-- | drivers/char/agp/sis-agp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/agp/sis-agp.c b/drivers/char/agp/sis-agp.c index ebc05554045c..a701361a8890 100644 --- a/drivers/char/agp/sis-agp.c +++ b/drivers/char/agp/sis-agp.c @@ -332,6 +332,7 @@ static struct pci_device_id agp_sis_pci_table[] = { MODULE_DEVICE_TABLE(pci, agp_sis_pci_table); static struct pci_driver agp_sis_pci_driver = { + .owner = THIS_MODULE, .name = "agpgart-sis", .id_table = agp_sis_pci_table, .probe = agp_sis_probe, |