Commit 08c8acc9 authored by Rosen Penev's avatar Rosen Penev Committed by Jakub Kicinski

net: ibm: emac: mal: fix wrong goto

dcr_map is called in the previous if and therefore needs to be unmapped.

Fixes: 1ff0fcfc ("ibm_newemac: Fix new MAL feature handling")
Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
Link: https://patch.msgid.link/20241007235711.5714-1-rosenp@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 3cb7cf15
...@@ -578,7 +578,7 @@ static int mal_probe(struct platform_device *ofdev) ...@@ -578,7 +578,7 @@ static int mal_probe(struct platform_device *ofdev)
printk(KERN_ERR "%pOF: Support for 405EZ not enabled!\n", printk(KERN_ERR "%pOF: Support for 405EZ not enabled!\n",
ofdev->dev.of_node); ofdev->dev.of_node);
err = -ENODEV; err = -ENODEV;
goto fail; goto fail_unmap;
#endif #endif
} }
......
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