Commit 4f22b895 authored by Tobin C. Harding's avatar Tobin C. Harding Committed by Greg Kroah-Hartman

staging: ks7010: remove unused spin_lock

Driver SDIO private data structure description includes a spin_lock
that is never used. This data structure only contains a pointer to the
sdio_func and a pointer to the main device private data. A spin_lock
is not required here.

Remove unused spin_lock.
Signed-off-by: default avatarTobin C. Harding <me@tobin.cc>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d2729c6e
...@@ -892,7 +892,6 @@ static int ks7010_sdio_probe(struct sdio_func *func, ...@@ -892,7 +892,6 @@ static int ks7010_sdio_probe(struct sdio_func *func,
return -ENOMEM; return -ENOMEM;
card->func = func; card->func = func;
spin_lock_init(&card->lock);
/*** Initialize SDIO ***/ /*** Initialize SDIO ***/
sdio_claim_host(func); sdio_claim_host(func);
......
...@@ -98,7 +98,6 @@ struct hw_info_t { ...@@ -98,7 +98,6 @@ struct hw_info_t {
struct ks_sdio_card { struct ks_sdio_card {
struct sdio_func *func; struct sdio_func *func;
struct ks_wlan_private *priv; struct ks_wlan_private *priv;
spinlock_t lock;
}; };
/* Tx Device struct */ /* Tx Device struct */
......
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