This is required so that we give up the last reference to the device. Signed-off-by: Levente Kurusa <levex@xxxxxxxxx> --- arch/arm/mach-exynos/common.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index 61d2906..8b58829 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -407,7 +407,13 @@ early_initcall(exynos4_l2x0_cache_init); static int __init exynos_init(void) { + int rc = 0; + printk(KERN_INFO "EXYNOS: Initializing architecture\n"); - return device_register(&exynos4_dev); + rc = device_register(&exynos4_dev); + if (rc) + put_device(&exynos4_dev); + + return rc; } -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html