Commit 912335c43bb10d124471bf063a85e132aa814214

Authored by Hans J. Koch
Committed by Greg Kroah-Hartman
1 parent 7607b1d673

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>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

drivers/uio/uio_cif.c
... ... @@ -147,6 +147,7 @@
147 147 module_init(hilscher_init_module);
148 148 module_exit(hilscher_exit_module);
149 149  
  150 +MODULE_DEVICE_TABLE(pci, hilscher_pci_ids);
150 151 MODULE_LICENSE("GPL v2");
151 152 MODULE_AUTHOR("Hans J. Koch, Benedikt Spranger");