char: pcmcia: remove redundant pointer dev
Pointer dev is being assigned but is never used hence it is redundant and can be removed. Cleans up clang warning: warning: variable ‘dev’ set but not used [-Wunused-but-set-variable] Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9f10ee32bf
commit
07fb28b80c
|
@ -1748,8 +1748,6 @@ static int cm4000_config_check(struct pcmcia_device *p_dev, void *priv_data)
|
||||||
|
|
||||||
static int cm4000_config(struct pcmcia_device * link, int devno)
|
static int cm4000_config(struct pcmcia_device * link, int devno)
|
||||||
{
|
{
|
||||||
struct cm4000_dev *dev;
|
|
||||||
|
|
||||||
link->config_flags |= CONF_AUTO_SET_IO;
|
link->config_flags |= CONF_AUTO_SET_IO;
|
||||||
|
|
||||||
/* read the config-tuples */
|
/* read the config-tuples */
|
||||||
|
@ -1759,8 +1757,6 @@ static int cm4000_config(struct pcmcia_device * link, int devno)
|
||||||
if (pcmcia_enable_device(link))
|
if (pcmcia_enable_device(link))
|
||||||
goto cs_release;
|
goto cs_release;
|
||||||
|
|
||||||
dev = link->priv;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
cs_release:
|
cs_release:
|
||||||
|
|
Loading…
Reference in New Issue