This is required so that we give up the last reference to the device.

Signed-off-by: Levente Kurusa <le...@linux.com>
---
 arch/s390/kernel/time.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c
index 064c308..16c717f 100644
--- a/arch/s390/kernel/time.c
+++ b/arch/s390/kernel/time.c
@@ -1351,8 +1351,10 @@ static int __init etr_register_port(struct device *dev)
        int rc;
 
        rc = device_register(dev);
-       if (rc)
+       if (rc) {
+               put_device(dev);
                goto out;
+       }
        for (attr = etr_port_attributes; *attr; attr++) {
                rc = device_create_file(dev, *attr);
                if (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/

Reply via email to