Commit 8b5a1f9c authored by Takashi Iwai's avatar Takashi Iwai

ALSA: ISA: Remove superfluous *_set_drvdata(NULL) calls

Similarly like the previous commit for PCI drivers, remove
dev_set_drvdata(NULL) and pnp_set_drvdata(NULL) calls in ISA drivers
now.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d2c69807
...@@ -135,7 +135,6 @@ out: snd_card_free(card); ...@@ -135,7 +135,6 @@ out: snd_card_free(card);
static int snd_ad1848_remove(struct device *dev, unsigned int n) static int snd_ad1848_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -101,7 +101,6 @@ out: snd_card_free(card); ...@@ -101,7 +101,6 @@ out: snd_card_free(card);
static int snd_adlib_remove(struct device *dev, unsigned int n) static int snd_adlib_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -418,7 +418,6 @@ static int snd_cmi8328_remove(struct device *pdev, unsigned int dev) ...@@ -418,7 +418,6 @@ static int snd_cmi8328_remove(struct device *pdev, unsigned int dev)
snd_cmi8328_cfg_write(cmi->port, CFG2, 0); snd_cmi8328_cfg_write(cmi->port, CFG2, 0);
snd_cmi8328_cfg_write(cmi->port, CFG3, 0); snd_cmi8328_cfg_write(cmi->port, CFG3, 0);
snd_card_free(card); snd_card_free(card);
dev_set_drvdata(pdev, NULL);
return 0; return 0;
} }
......
...@@ -651,7 +651,6 @@ static int snd_cmi8330_isa_remove(struct device *devptr, ...@@ -651,7 +651,6 @@ static int snd_cmi8330_isa_remove(struct device *devptr,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -151,7 +151,6 @@ out: snd_card_free(card); ...@@ -151,7 +151,6 @@ out: snd_card_free(card);
static int snd_cs4231_remove(struct device *dev, unsigned int n) static int snd_cs4231_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -504,7 +504,6 @@ static int snd_cs423x_isa_remove(struct device *pdev, ...@@ -504,7 +504,6 @@ static int snd_cs423x_isa_remove(struct device *pdev,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(pdev)); snd_card_free(dev_get_drvdata(pdev));
dev_set_drvdata(pdev, NULL);
return 0; return 0;
} }
...@@ -600,7 +599,6 @@ static int snd_cs423x_pnpbios_detect(struct pnp_dev *pdev, ...@@ -600,7 +599,6 @@ static int snd_cs423x_pnpbios_detect(struct pnp_dev *pdev,
static void snd_cs423x_pnp_remove(struct pnp_dev *pdev) static void snd_cs423x_pnp_remove(struct pnp_dev *pdev)
{ {
snd_card_free(pnp_get_drvdata(pdev)); snd_card_free(pnp_get_drvdata(pdev));
pnp_set_drvdata(pdev, NULL);
} }
#ifdef CONFIG_PM #ifdef CONFIG_PM
......
...@@ -213,7 +213,6 @@ static int snd_es1688_isa_probe(struct device *dev, unsigned int n) ...@@ -213,7 +213,6 @@ static int snd_es1688_isa_probe(struct device *dev, unsigned int n)
static int snd_es1688_isa_remove(struct device *dev, unsigned int n) static int snd_es1688_isa_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -2235,7 +2235,6 @@ static int snd_es18xx_isa_remove(struct device *devptr, ...@@ -2235,7 +2235,6 @@ static int snd_es18xx_isa_remove(struct device *devptr,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
...@@ -2305,7 +2304,6 @@ static int snd_audiodrive_pnp_detect(struct pnp_dev *pdev, ...@@ -2305,7 +2304,6 @@ static int snd_audiodrive_pnp_detect(struct pnp_dev *pdev,
static void snd_audiodrive_pnp_remove(struct pnp_dev *pdev) static void snd_audiodrive_pnp_remove(struct pnp_dev *pdev)
{ {
snd_card_free(pnp_get_drvdata(pdev)); snd_card_free(pnp_get_drvdata(pdev));
pnp_set_drvdata(pdev, NULL);
} }
#ifdef CONFIG_PM #ifdef CONFIG_PM
......
...@@ -623,7 +623,6 @@ static int snd_galaxy_probe(struct device *dev, unsigned int n) ...@@ -623,7 +623,6 @@ static int snd_galaxy_probe(struct device *dev, unsigned int n)
static int snd_galaxy_remove(struct device *dev, unsigned int n) static int snd_galaxy_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -215,7 +215,6 @@ out: snd_card_free(card); ...@@ -215,7 +215,6 @@ out: snd_card_free(card);
static int snd_gusclassic_remove(struct device *dev, unsigned int n) static int snd_gusclassic_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -344,7 +344,6 @@ out: snd_card_free(card); ...@@ -344,7 +344,6 @@ out: snd_card_free(card);
static int snd_gusextreme_remove(struct device *dev, unsigned int n) static int snd_gusextreme_remove(struct device *dev, unsigned int n)
{ {
snd_card_free(dev_get_drvdata(dev)); snd_card_free(dev_get_drvdata(dev));
dev_set_drvdata(dev, NULL);
return 0; return 0;
} }
......
...@@ -357,7 +357,6 @@ static int snd_gusmax_probe(struct device *pdev, unsigned int dev) ...@@ -357,7 +357,6 @@ static int snd_gusmax_probe(struct device *pdev, unsigned int dev)
static int snd_gusmax_remove(struct device *devptr, unsigned int dev) static int snd_gusmax_remove(struct device *devptr, unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -849,7 +849,6 @@ static int snd_interwave_isa_probe(struct device *pdev, ...@@ -849,7 +849,6 @@ static int snd_interwave_isa_probe(struct device *pdev,
static int snd_interwave_isa_remove(struct device *devptr, unsigned int dev) static int snd_interwave_isa_remove(struct device *devptr, unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -1064,7 +1064,6 @@ static int snd_msnd_isa_probe(struct device *pdev, unsigned int idx) ...@@ -1064,7 +1064,6 @@ static int snd_msnd_isa_probe(struct device *pdev, unsigned int idx)
static int snd_msnd_isa_remove(struct device *pdev, unsigned int dev) static int snd_msnd_isa_remove(struct device *pdev, unsigned int dev)
{ {
snd_msnd_unload(dev_get_drvdata(pdev)); snd_msnd_unload(dev_get_drvdata(pdev));
dev_set_drvdata(pdev, NULL);
return 0; return 0;
} }
......
...@@ -757,7 +757,6 @@ static int snd_opl3sa2_pnp_detect(struct pnp_dev *pdev, ...@@ -757,7 +757,6 @@ static int snd_opl3sa2_pnp_detect(struct pnp_dev *pdev,
static void snd_opl3sa2_pnp_remove(struct pnp_dev *pdev) static void snd_opl3sa2_pnp_remove(struct pnp_dev *pdev)
{ {
snd_card_free(pnp_get_drvdata(pdev)); snd_card_free(pnp_get_drvdata(pdev));
pnp_set_drvdata(pdev, NULL);
} }
#ifdef CONFIG_PM #ifdef CONFIG_PM
...@@ -900,7 +899,6 @@ static int snd_opl3sa2_isa_remove(struct device *devptr, ...@@ -900,7 +899,6 @@ static int snd_opl3sa2_isa_remove(struct device *devptr,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -1495,7 +1495,6 @@ static int snd_miro_isa_remove(struct device *devptr, ...@@ -1495,7 +1495,6 @@ static int snd_miro_isa_remove(struct device *devptr,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -1035,7 +1035,6 @@ static int snd_opti9xx_isa_remove(struct device *devptr, ...@@ -1035,7 +1035,6 @@ static int snd_opti9xx_isa_remove(struct device *devptr,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -345,7 +345,6 @@ static int snd_jazz16_remove(struct device *devptr, unsigned int dev) ...@@ -345,7 +345,6 @@ static int snd_jazz16_remove(struct device *devptr, unsigned int dev)
{ {
struct snd_card *card = dev_get_drvdata(devptr); struct snd_card *card = dev_get_drvdata(devptr);
dev_set_drvdata(devptr, NULL);
snd_card_free(card); snd_card_free(card);
return 0; return 0;
} }
......
...@@ -566,7 +566,6 @@ static int snd_sb16_isa_probe(struct device *pdev, unsigned int dev) ...@@ -566,7 +566,6 @@ static int snd_sb16_isa_probe(struct device *pdev, unsigned int dev)
static int snd_sb16_isa_remove(struct device *pdev, unsigned int dev) static int snd_sb16_isa_remove(struct device *pdev, unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(pdev)); snd_card_free(dev_get_drvdata(pdev));
dev_set_drvdata(pdev, NULL);
return 0; return 0;
} }
......
...@@ -208,7 +208,6 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev) ...@@ -208,7 +208,6 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
static int snd_sb8_remove(struct device *pdev, unsigned int dev) static int snd_sb8_remove(struct device *pdev, unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(pdev)); snd_card_free(dev_get_drvdata(pdev));
dev_set_drvdata(pdev, NULL);
return 0; return 0;
} }
......
...@@ -698,7 +698,6 @@ static int snd_sc6000_remove(struct device *devptr, unsigned int dev) ...@@ -698,7 +698,6 @@ static int snd_sc6000_remove(struct device *devptr, unsigned int dev)
release_region(port[dev], 0x10); release_region(port[dev], 0x10);
release_region(mss_port[dev], 4); release_region(mss_port[dev], 4);
dev_set_drvdata(devptr, NULL);
snd_card_free(card); snd_card_free(card);
return 0; return 0;
} }
......
...@@ -1200,7 +1200,6 @@ static int snd_sscape_probe(struct device *pdev, unsigned int dev) ...@@ -1200,7 +1200,6 @@ static int snd_sscape_probe(struct device *pdev, unsigned int dev)
static int snd_sscape_remove(struct device *devptr, unsigned int dev) static int snd_sscape_remove(struct device *devptr, unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
...@@ -581,7 +581,6 @@ static int snd_wavefront_isa_remove(struct device *devptr, ...@@ -581,7 +581,6 @@ static int snd_wavefront_isa_remove(struct device *devptr,
unsigned int dev) unsigned int dev)
{ {
snd_card_free(dev_get_drvdata(devptr)); snd_card_free(dev_get_drvdata(devptr));
dev_set_drvdata(devptr, NULL);
return 0; return 0;
} }
......
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