Gitweb: http://git.kernel.org/linus/912335c43bb10d124471bf063a85e132aa814214 Commit: 912335c43bb10d124471bf063a85e132aa814214 Parent: 7607b1d673469d5b5dce4c9b6779d165e03c8ff5 Author: Hans J. Koch <hjk@linutronix.de> AuthorDate: Sat Apr 11 04:18:25 2009 +0200 Committer: Greg Kroah-Hartman <gregkh@suse.de> CommitDate: Thu Apr 16 16:17:11 2009 -0700 UIO: fix specific device driver missing statement for depmod On Fri, Apr 10, 2009 at 01:50:50PM -0700, Andrew Morton wrote: > On Fri, 10 Apr 2009 13:32:01 GMT > bugzilla-daemon@bugzilla.kernel.org wrote: > > > 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@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- drivers/uio/uio_cif.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/uio/uio_cif.c b/drivers/uio/uio_cif.c index c60b8fc..28034c8 100644 --- a/drivers/uio/uio_cif.c +++ b/drivers/uio/uio_cif.c @@ -147,5 +147,6 @@ static void __exit hilscher_exit_module(void) 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"); -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
