lkml.org 
[lkml]   [2013]   [Dec]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 12/38] arm: s5pv210: add missing put_device call
Date
This is required so that give up the last reference to the device.

Signed-off-by: Levente Kurusa <levex@linux.com>
---
arch/arm/mach-s5pv210/common.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/arch/arm/mach-s5pv210/common.c b/arch/arm/mach-s5pv210/common.c
index 26027a2..81f43ae 100644
--- a/arch/arm/mach-s5pv210/common.c
+++ b/arch/arm/mach-s5pv210/common.c
@@ -267,8 +267,14 @@ core_initcall(s5pv210_core_init);

int __init s5pv210_init(void)
{
+ int rc = 0;
+
printk(KERN_INFO "S5PV210: Initializing architecture\n");
- return device_register(&s5pv210_dev);
+ rc = device_register(&s5pv210_dev);
+ if (rc)
+ put_device(&s5pv210_dev);
+
+ return rc;
}

/* uart registration process */
--
1.8.3.1


\
 
 \ /
  Last update: 2013-12-19 16:21    [W:0.223 / U:1.196 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site