From: Jie Liu <jeff....@oracle.com> Return the actual error code if call kset_create_and_add() failed
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> Signed-off-by: Jie Liu <jeff....@oracle.com> --- 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 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/