* [PATCH] video: add MODULE_DEVICE_TABLE
@ 2011-03-07 8:26 Axel Lin
2011-03-07 10:31 ` Alan Cox
0 siblings, 1 reply; 2+ messages in thread
From: Axel Lin @ 2011-03-07 8:26 UTC (permalink / raw)
To: linux-kernel
Cc: Ghozlane Toumi, David S. Miller, Alan Hourihane, Paul Mundt,
linux-fbdev
The device table is required to load modules based on modaliases.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Ghozlane Toumi <gtoumi@laposte.net>
Cc: David S. Miller <davem@davemloft.net>
Cc: Alan Hourihane <alanh@tungstengraphics.com>
---
drivers/video/sstfb.c | 1 +
drivers/video/sunxvr2500.c | 1 +
drivers/video/sunxvr500.c | 1 +
drivers/video/vermilion/vermilion.c | 1 +
4 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/video/sstfb.c b/drivers/video/sstfb.c
index 2ab7041..597e80b 100644
--- a/drivers/video/sstfb.c
+++ b/drivers/video/sstfb.c
@@ -1485,6 +1485,7 @@ static const struct pci_device_id sstfb_id_tbl[] = {
.driver_data = ID_VOODOO2, },
{ 0 },
};
+MODULE_DEVICE_TABLE(pci, sstfb_id_tbl);
static struct pci_driver sstfb_driver = {
.name = "sstfb",
diff --git a/drivers/video/sunxvr2500.c b/drivers/video/sunxvr2500.c
index 5848436..a83bc42 100644
--- a/drivers/video/sunxvr2500.c
+++ b/drivers/video/sunxvr2500.c
@@ -244,6 +244,7 @@ static struct pci_device_id s3d_pci_table[] = {
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0033), },
{ 0, }
};
+MODULE_DEVICE_TABLE(pci, s3d_pci_table);
static struct pci_driver s3d_driver = {
.name = "s3d",
diff --git a/drivers/video/sunxvr500.c b/drivers/video/sunxvr500.c
index b9c2b94..19e0395 100644
--- a/drivers/video/sunxvr500.c
+++ b/drivers/video/sunxvr500.c
@@ -428,6 +428,7 @@ static struct pci_device_id e3d_pci_table[] = {
},
{ 0, }
};
+MODULE_DEVICE_TABLE(pci, e3d_pci_table);
static struct pci_driver e3d_driver = {
.name = "e3d",
diff --git a/drivers/video/vermilion/vermilion.c b/drivers/video/vermilion/vermilion.c
index 931a567..30bd156 100644
--- a/drivers/video/vermilion/vermilion.c
+++ b/drivers/video/vermilion/vermilion.c
@@ -1057,6 +1057,7 @@ static struct pci_device_id vml_ids[] = {
{PCI_DEVICE(PCI_VENDOR_ID_INTEL, VML_DEVICE_VDC)},
{0}
};
+MODULE_DEVICE_TABLE(pci, vml_ids);
static struct pci_driver vmlfb_pci_driver = {
.name = "vmlfb",
--
1.7.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] video: add MODULE_DEVICE_TABLE
2011-03-07 8:26 [PATCH] video: add MODULE_DEVICE_TABLE Axel Lin
@ 2011-03-07 10:31 ` Alan Cox
0 siblings, 0 replies; 2+ messages in thread
From: Alan Cox @ 2011-03-07 10:31 UTC (permalink / raw)
To: Axel Lin
Cc: linux-kernel, Ghozlane Toumi, David S. Miller, Alan Hourihane,
Paul Mundt, linux-fbdev
On Mon, 07 Mar 2011 16:26:13 +0800
Axel Lin <axel.lin@gmail.com> wrote:
> The device table is required to load modules based on modaliases.
Doing this then triggers autoloading which for some of these drivers is
the wrong thing.
> diff --git a/drivers/video/sstfb.c b/drivers/video/sstfb.c
> index 2ab7041..597e80b 100644
> --- a/drivers/video/sstfb.c
> +++ b/drivers/video/sstfb.c
> @@ -1485,6 +1485,7 @@ static const struct pci_device_id sstfb_id_tbl[] = {
> .driver_data = ID_VOODOO2, },
> { 0 },
> };
> +MODULE_DEVICE_TABLE(pci, sstfb_id_tbl);
NAK - as things stand in the frame buffer world you don't want sstfb
autoloading and stealing your main framebuffer away.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-03-07 10:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07 8:26 [PATCH] video: add MODULE_DEVICE_TABLE Axel Lin
2011-03-07 10:31 ` Alan Cox
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox