From: Eric Anholt Date: Sun, 19 Oct 2003 20:06:03 +0000 (+0000) Subject: Fix probing on 2.5+ kernels, which require that drivers have .id_table set. X-Git-Tag: submit/1.0/20121108.012404~2200 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63ce8af5550950b19db432230910e7a2424fa16f;p=profile%2Fivi%2Flibdrm.git Fix probing on 2.5+ kernels, which require that drivers have .id_table set. We use PCI_ANY_ID to ask that our probe is called for every available device. Submitted by: jonsmirl --- diff --git a/linux-core/drm_drv.c b/linux-core/drm_drv.c index d1bad56..4ea81e8 100644 --- a/linux-core/drm_drv.c +++ b/linux-core/drm_drv.c @@ -619,9 +619,13 @@ static void __exit remove(struct pci_dev *dev) { } +static struct pci_device_id device_id_table[] = { + { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, +}; + static struct pci_driver driver = { .name = DRIVER_NAME, - .id_table = NULL, + .id_table = device_id_table, .probe = probe, .remove = remove, }; diff --git a/linux/drm_drv.h b/linux/drm_drv.h index d1bad56..4ea81e8 100644 --- a/linux/drm_drv.h +++ b/linux/drm_drv.h @@ -619,9 +619,13 @@ static void __exit remove(struct pci_dev *dev) { } +static struct pci_device_id device_id_table[] = { + { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, +}; + static struct pci_driver driver = { .name = DRIVER_NAME, - .id_table = NULL, + .id_table = device_id_table, .probe = probe, .remove = remove, };