The patch titled uio: add MODULE_DEVICE_TABLE has been added to the -mm tree. Its filename is uio-add-module_device_table.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: uio: add MODULE_DEVICE_TABLE From: "Hans J. Koch" <hjk@xxxxxxxxxxxxx> Addresses http://bugzilla.kernel.org/show_bug.cgi?id=13059 drivers/uio/uio_cif.c misses a MODULE_DEVICE_TABLE, this fixes it. Signed-off-by: Hans J. Koch <hjk@xxxxxxxxxxxxx> Reported-by: <vinkronald@xxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/uio/uio_cif.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/uio/uio_cif.c~uio-add-module_device_table drivers/uio/uio_cif.c --- a/drivers/uio/uio_cif.c~uio-add-module_device_table +++ a/drivers/uio/uio_cif.c @@ -147,5 +147,6 @@ static void __exit hilscher_exit_module( module_init(hilscher_init_module); module_exit(hilscher_exit_module); +MODULE_DEVICE_TABLE(pci, hilscher_pci_ids); MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Hans J. Koch, Benedikt Spranger"); _ Patches currently in -mm which might be from hjk@xxxxxxxxxxxxx are uio-add-module_device_table.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