]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: ipack/devices/ipoctal: Expose DEVICE_TABLE for ipoctal.
authorJens Taprogge <jens.taprogge@taprogge.org>
Tue, 4 Sep 2012 15:01:18 +0000 (17:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 4 Sep 2012 22:13:51 +0000 (15:13 -0700)
The modalias entries for the module are now created.

Signed-off-by: Jens Taprogge <jens.taprogge@taprogge.org>
Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ipack/devices/ipoctal.c

index 7e1e6f70560da98147f5f3bf782639089490ccfd..829b8870a8682a74a2da2124557ad9a11b2b6da9 100644 (file)
@@ -845,6 +845,18 @@ static void ipoctal_remove(struct ipack_device *device)
        }
 }
 
+static DEFINE_IPACK_DEVICE_TABLE(ipoctal_ids) = {
+       { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS,
+                       IPACK1_DEVICE_ID_SBS_OCTAL_232) },
+       { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS,
+                       IPACK1_DEVICE_ID_SBS_OCTAL_422) },
+       { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS,
+                       IPACK1_DEVICE_ID_SBS_OCTAL_485) },
+       { 0, },
+};
+
+MODULE_DEVICE_TABLE(ipack, ipoctal_ids);
+
 static const struct ipack_driver_ops ipoctal_drv_ops = {
        .match = ipoctal_match,
        .probe = ipoctal_probe,
@@ -853,6 +865,7 @@ static const struct ipack_driver_ops ipoctal_drv_ops = {
 
 static struct ipack_driver driver = {
        .ops      = &ipoctal_drv_ops,
+       .id_table = ipoctal_ids,
 };
 
 static int __init ipoctal_init(void)