The patch titled gxfb: use PCI_DEVICE() for gxfb's pci device table has been removed from the -mm tree. Its filename was gxfb-use-pci_device-for-gxfbs-pci-device-table.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: gxfb: use PCI_DEVICE() for gxfb's pci device table From: Andres Salomon <dilinger@xxxxxxxxxx> Drop the class/class_mask stuff; it's unnecessary as long as the vendor and device IDs match. Signed-off-by: Andres Salomon <dilinger@xxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/geode/gxfb_core.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN drivers/video/geode/gxfb_core.c~gxfb-use-pci_device-for-gxfbs-pci-device-table drivers/video/geode/gxfb_core.c --- a/drivers/video/geode/gxfb_core.c~gxfb-use-pci_device-for-gxfbs-pci-device-table +++ a/drivers/video/geode/gxfb_core.c @@ -398,9 +398,7 @@ static void gxfb_remove(struct pci_dev * } static struct pci_device_id gxfb_id_table[] = { - { PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_GX_VIDEO, - PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16, - 0xff0000, 0 }, + { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_GX_VIDEO) }, { 0, } }; _ Patches currently in -mm which might be from dilinger@xxxxxxxxxx are origin.patch git-kbuild.patch x86-olpc-add-one-laptop-per-child-architecture-support.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html