This is required so that we give up the last reference to the device. Signed-off-by: Levente Kurusa <le...@linux.com> --- 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-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/