wifi: orinoco: Fix an error handling path in orinoco_cs_probe()
[ Upstream commit67a81d911c] Should orinoco_cs_config() fail, some resources need to be released as already done in the remove function. While at it, remove a useless and erroneous comment. The probe is orinoco_cs_probe(), not orinoco_cs_attach(). Fixes:15b99ac172("[PATCH] pcmcia: add return value to _config() functions") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/e24735ce4d82901d5f7ea08419eea53bfdde3d65.1684568286.git.christophe.jaillet@wanadoo.fr Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fb7d78feb5
commit
86ebbcbdc7
@@ -96,6 +96,7 @@ orinoco_cs_probe(struct pcmcia_device *link)
|
|||||||
{
|
{
|
||||||
struct orinoco_private *priv;
|
struct orinoco_private *priv;
|
||||||
struct orinoco_pccard *card;
|
struct orinoco_pccard *card;
|
||||||
|
int ret;
|
||||||
|
|
||||||
priv = alloc_orinocodev(sizeof(*card), &link->dev,
|
priv = alloc_orinocodev(sizeof(*card), &link->dev,
|
||||||
orinoco_cs_hard_reset, NULL);
|
orinoco_cs_hard_reset, NULL);
|
||||||
@@ -107,8 +108,16 @@ orinoco_cs_probe(struct pcmcia_device *link)
|
|||||||
card->p_dev = link;
|
card->p_dev = link;
|
||||||
link->priv = priv;
|
link->priv = priv;
|
||||||
|
|
||||||
return orinoco_cs_config(link);
|
ret = orinoco_cs_config(link);
|
||||||
} /* orinoco_cs_attach */
|
if (ret)
|
||||||
|
goto err_free_orinocodev;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
err_free_orinocodev:
|
||||||
|
free_orinocodev(priv);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static void orinoco_cs_detach(struct pcmcia_device *link)
|
static void orinoco_cs_detach(struct pcmcia_device *link)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user