Commit f9b5bd05 authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman

staging: ks7010: export sdio ids

So the module will be loaded automatically on card insertion. Rename the
array while here.
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1c013a5c
......@@ -27,11 +27,12 @@
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 */ }
};
MODULE_DEVICE_TABLE(sdio, ks7010_sdio_ids);
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",
.id_table = if_sdio_ids,
.id_table = ks7010_sdio_ids,
.probe = ks7910_sdio_probe,
.remove = ks7910_sdio_remove,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment