diff options
author | Jeff Mahoney <jeffm@suse.com> | 2014-08-12 16:46:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-14 12:56:15 -0400 |
commit | 1813908986e36119228c158aae1c6a0267c99e77 (patch) | |
tree | e41538cb82546450a898a998ebb7709c433db4c9 | |
parent | 24d7cd207f8e0d6864a314d5f03b5434403ff940 (diff) |
drivers/mfd/rtsx_usb.c: export device table
The rtsx_usb driver contains the table for the devices it supports but
doesn't export it. As a result, no alias is generated and it doesn't
get loaded automatically.
Via https://bugzilla.novell.com/show_bug.cgi?id=890096
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Reported-by: Marcel Witte <wittemar@googlemail.com>
Cc: Roger Tseng <rogerable@realtek.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/mfd/rtsx_usb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/rtsx_usb.c b/drivers/mfd/rtsx_usb.c index 6352bec8419a..71f387ce8cbd 100644 --- a/drivers/mfd/rtsx_usb.c +++ b/drivers/mfd/rtsx_usb.c | |||
@@ -744,6 +744,7 @@ static struct usb_device_id rtsx_usb_usb_ids[] = { | |||
744 | { USB_DEVICE(0x0BDA, 0x0140) }, | 744 | { USB_DEVICE(0x0BDA, 0x0140) }, |
745 | { } | 745 | { } |
746 | }; | 746 | }; |
747 | MODULE_DEVICE_TABLE(usb, rtsx_usb_usb_ids); | ||
747 | 748 | ||
748 | static struct usb_driver rtsx_usb_driver = { | 749 | static struct usb_driver rtsx_usb_driver = { |
749 | .name = "rtsx_usb", | 750 | .name = "rtsx_usb", |