staging: ks7010: export sdio ids
authorWolfram Sang <wsa@the-dreams.de>
Fri, 17 Jun 2016 08:46:55 +0000 (10:46 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 19 Jun 2016 02:45:55 +0000 (19:45 -0700)
So the module will be loaded automatically on card insertion. Rename the
array while here.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks7010_sdio.c

index b3c98eb..280cbfb 100644 (file)
 
 static int reg_net = 0;
 
 
 static int reg_net = 0;
 
-static const struct sdio_device_id if_sdio_ids[] = {
+static const struct sdio_device_id ks7010_sdio_ids[] = {
        {SDIO_DEVICE(SDIO_VENDOR_ID_KS_CODE_A, SDIO_DEVICE_ID_KS_7010)},
        {SDIO_DEVICE(SDIO_VENDOR_ID_KS_CODE_B, SDIO_DEVICE_ID_KS_7010)},
        { /* all zero */ }
 };
        {SDIO_DEVICE(SDIO_VENDOR_ID_KS_CODE_A, SDIO_DEVICE_ID_KS_7010)},
        {SDIO_DEVICE(SDIO_VENDOR_ID_KS_CODE_B, SDIO_DEVICE_ID_KS_7010)},
        { /* all zero */ }
 };
+MODULE_DEVICE_TABLE(sdio, ks7010_sdio_ids);
 
 static int ks7910_sdio_probe(struct sdio_func *function,
                             const struct sdio_device_id *device);
 
 static int ks7910_sdio_probe(struct sdio_func *function,
                             const struct sdio_device_id *device);
@@ -952,7 +953,7 @@ static void ks7010_card_init(struct ks_wlan_private *priv)
 
 static struct sdio_driver ks7010_sdio_driver = {
        .name = "ks7910_sdio",
 
 static struct sdio_driver ks7010_sdio_driver = {
        .name = "ks7910_sdio",
-       .id_table = if_sdio_ids,
+       .id_table = ks7010_sdio_ids,
        .probe = ks7910_sdio_probe,
        .remove = ks7910_sdio_remove,
 };
        .probe = ks7910_sdio_probe,
        .remove = ks7910_sdio_remove,
 };