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: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Tobin C. Harding 2017-04-12 09:56:50 +10:00 committed by Greg Kroah-Hartman
parent d2729c6e94
commit 4f22b8954b
2 changed files with 0 additions and 2 deletions

View File

@ -892,7 +892,6 @@ static int ks7010_sdio_probe(struct sdio_func *func,
return -ENOMEM;
card->func = func;
spin_lock_init(&card->lock);
/*** Initialize SDIO ***/
sdio_claim_host(func);

View File

@ -98,7 +98,6 @@ struct hw_info_t {
struct ks_sdio_card {
struct sdio_func *func;
struct ks_wlan_private *priv;
spinlock_t lock;
};
/* Tx Device struct */