From: Jie Liu <[email protected]>

Return the actual error code if call kset_create_and_add() failed

Cc: Greg Kroah-Hartman <[email protected]>
Signed-off-by: Jie Liu <[email protected]>
---
 drivers/of/base.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/of/base.c b/drivers/of/base.c
index 8368d96..8f8efa1 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -290,9 +290,9 @@ static int __init of_init(void)
        /* Create the kset, and register existing nodes */
        mutex_lock(&of_aliases_mutex);
        of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
-       if (!of_kset) {
+       if (IS_ERR(of_kset)) {
                mutex_unlock(&of_aliases_mutex);
-               return -ENOMEM;
+               return PTR_ERR(of_kset);
        }
        for_each_of_allnodes(np)
                __of_node_add(np);
-- 
1.8.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
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