Properly check return value from bus_register() and propagate it out of 
tiocx_init() in case of failure.

Reported-by: Fengguang Wu <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
---
 arch/ia64/sn/kernel/tiocx.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/arch/ia64/sn/kernel/tiocx.c b/arch/ia64/sn/kernel/tiocx.c
index 14c1711..e35f648 100644
--- a/arch/ia64/sn/kernel/tiocx.c
+++ b/arch/ia64/sn/kernel/tiocx.c
@@ -490,11 +490,14 @@ static int __init tiocx_init(void)
 {
        cnodeid_t cnodeid;
        int found_tiocx_device = 0;
+       int err;
 
        if (!ia64_platform_is("sn2"))
                return 0;
 
-       bus_register(&tiocx_bus_type);
+       err = bus_register(&tiocx_bus_type);
+       if (err)
+               return err;
 
        for (cnodeid = 0; cnodeid < num_cnodes; cnodeid++) {
                nasid_t nasid;

-- 
Jiri Kosina
SUSE Labs
--
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