]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drivers/sbus/char/envctrl.c: ignore orderly_poweroff return value
authorJoel Stanley <joel@jms.id.au>
Wed, 15 Apr 2015 23:16:50 +0000 (16:16 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 15 Apr 2015 23:35:23 +0000 (16:35 -0700)
orderly_poweroff() unconditionally returns 0, so remove the dead code that
checks the return value.

A future patch will change the return type to void.

Signed-off-by: Joel Stanley <joel@jms.id.au>
Acked-by: David S. Miller <davem@davemloft.net>
Cc: Fabian Frederick <fabf@skynet.be>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/sbus/char/bbc_envctrl.c
drivers/sbus/char/envctrl.c

index 0787b97561657d1116f48c32ae5efefb31d71c8d..228c782d6433257cfb143294d3f4d3b3ec37ed7e 100644 (file)
@@ -160,8 +160,7 @@ static void do_envctrl_shutdown(struct bbc_cpu_temperature *tp)
        printk(KERN_CRIT "kenvctrld: Shutting down the system now.\n");
 
        shutting_down = 1;
-       if (orderly_poweroff(true) < 0)
-               printk(KERN_CRIT "envctrl: shutdown execution failed\n");
+       orderly_poweroff(true);
 }
 
 #define WARN_INTERVAL  (30 * HZ)
index e244cf3d9ec87b63155a5b2c0d8157a6319aecb6..5609b602c54d31077f4f6136129eda7ffda310e1 100644 (file)
@@ -970,18 +970,13 @@ static struct i2c_child_t *envctrl_get_i2c_child(unsigned char mon_type)
 static void envctrl_do_shutdown(void)
 {
        static int inprog = 0;
-       int ret;
 
        if (inprog != 0)
                return;
 
        inprog = 1;
        printk(KERN_CRIT "kenvctrld: WARNING: Shutting down the system now.\n");
-       ret = orderly_poweroff(true);
-       if (ret < 0) {
-               printk(KERN_CRIT "kenvctrld: WARNING: system shutdown failed!\n"); 
-               inprog = 0;  /* unlikely to succeed, but we could try again */
-       }
+       orderly_poweroff(true);
 }
 
 static struct task_struct *kenvctrld_task;