The patch titled hwrng: fix geode probe error unwind has been removed from the -mm tree. Its filename is hwrng-fix-geode-probe-error-unwind.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: hwrng: fix geode probe error unwind From: Michael Buesch <mb@xxxxxxxxx> The geode hwrng leaks an iomapped resource, if hwrng_register() fails. This fixes it. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/hw_random/geode-rng.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff -puN drivers/char/hw_random/geode-rng.c~hwrng-fix-geode-probe-error-unwind drivers/char/hw_random/geode-rng.c --- a/drivers/char/hw_random/geode-rng.c~hwrng-fix-geode-probe-error-unwind +++ a/drivers/char/hw_random/geode-rng.c @@ -107,10 +107,14 @@ found: if (err) { printk(KERN_ERR PFX "RNG registering failed (%d)\n", err); - goto out; + goto err_unmap; } out: return err; + +err_unmap: + iounmap(mem); + goto out; } static void __exit mod_exit(void) _ Patches currently in -mm which might be from mb@xxxxxxxxx are origin.patch omap-rng-build-fix.patch git-netdev-all.patch git-wireless-bcm43xx-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html