Commit 28c9fac0 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Ulf Hansson

memstick: jmb38x_ms: Fix an error handling path in 'jmb38x_ms_probe()'

If 'jmb38x_ms_count_slots()' returns 0, we must undo the previous
'pci_request_regions()' call.

Goto 'err_out_int' to fix it.

Fixes: 60fdd931 ("memstick: add support for JMicron jmb38x MemoryStick host controller")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 19ec6bb8
...@@ -941,7 +941,7 @@ static int jmb38x_ms_probe(struct pci_dev *pdev, ...@@ -941,7 +941,7 @@ static int jmb38x_ms_probe(struct pci_dev *pdev,
if (!cnt) { if (!cnt) {
rc = -ENODEV; rc = -ENODEV;
pci_dev_busy = 1; pci_dev_busy = 1;
goto err_out; goto err_out_int;
} }
jm = kzalloc(sizeof(struct jmb38x_ms) jm = kzalloc(sizeof(struct jmb38x_ms)
......
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