boot(9): Reduce annoying style diffs
authoruebayasi <uebayasi@openbsd.org>
Mon, 21 Jul 2014 17:25:47 +0000 (17:25 +0000)
committeruebayasi <uebayasi@openbsd.org>
Mon, 21 Jul 2014 17:25:47 +0000 (17:25 +0000)
- Always use either: ((x & RB_XXX) != 0) or ((x & RB_XXX) == 0) in boolean
  context (mostly if (x), or x ? y : z)
  - prom_halt() in alpha is confirmed to take int as boolean

Converted by coccinelle.  No functional change intended.

20 files changed:
sys/arch/alpha/alpha/machdep.c
sys/arch/amd64/amd64/machdep.c
sys/arch/armish/armish/armish_machdep.c
sys/arch/armv7/armv7/armv7_machdep.c
sys/arch/aviion/aviion/machdep.c
sys/arch/hppa/hppa/machdep.c
sys/arch/hppa64/hppa64/machdep.c
sys/arch/i386/i386/machdep.c
sys/arch/landisk/landisk/machdep.c
sys/arch/loongson/loongson/machdep.c
sys/arch/luna88k/luna88k/machdep.c
sys/arch/macppc/macppc/machdep.c
sys/arch/octeon/octeon/machdep.c
sys/arch/sgi/sgi/machdep.c
sys/arch/socppc/socppc/machdep.c
sys/arch/solbourne/solbourne/machdep.c
sys/arch/sparc/sparc/machdep.c
sys/arch/sparc64/sparc64/machdep.c
sys/arch/vax/vax/machdep.c
sys/arch/zaurus/zaurus/zaurus_machdep.c

index 204a890..4d9adfc 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.163 2014/07/20 18:24:34 deraadt Exp $ */
+/* $OpenBSD: machdep.c,v 1.164 2014/07/21 17:25:47 uebayasi Exp $ */
 /* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */
 
 /*-
@@ -1035,7 +1035,8 @@ haltsys:
                config_suspend(mainbus, DVACT_POWERDOWN);
 
 #ifdef BOOTKEY
-       printf("hit any key to %s...\n", howto & RB_HALT ? "halt" : "reboot");
+       printf("hit any key to %s...\n",
+           (howto & RB_HALT) != 0 ? "halt" : "reboot");
        cnpollc(1);     /* for proper keyboard command handling */
        cngetc();
        cnpollc(0);
@@ -1043,13 +1044,14 @@ haltsys:
 #endif
 
        /* Finally, powerdown/halt/reboot the system. */
-       if ((howto & RB_POWERDOWN) == RB_POWERDOWN &&
+       if ((howto & RB_POWERDOWN) != 0 &&
            platform.powerdown != NULL) {
                (*platform.powerdown)();
                printf("WARNING: powerdown failed!\n");
        }
-       printf("%s\n\n", howto & RB_HALT ? "halted." : "rebooting...");
-       prom_halt(howto & RB_HALT);
+       printf("%s\n\n",
+           (howto & RB_HALT) != 0 ? "halted." : "rebooting...");
+       prom_halt((howto & RB_HALT) != 0);
        for (;;) ;
        /* NOTREACHED */
 }
index c275f58..1754f3c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.188 2014/07/13 22:53:38 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.189 2014/07/21 17:25:47 uebayasi Exp $  */
 /*     $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */
 
 /*-
@@ -748,7 +748,7 @@ boot(int howto)
 {
        struct device *mainbus;
 
-       if (howto & RB_POWERDOWN)
+       if ((howto & RB_POWERDOWN) != 0)
                lid_suspend = 0;
 
        if (cold) {
@@ -776,7 +776,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -789,13 +789,13 @@ haltsys:
        x86_broadcast_ipi(X86_IPI_HALT);
 #endif
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
 #if NACPI > 0 && !defined(SMALL_KERNEL)
                extern int acpi_enabled;
 
                if (acpi_enabled) {
                        delay(500000);
-                       if (howto & RB_POWERDOWN)
+                       if ((howto & RB_POWERDOWN) != 0)
                                acpi_powerdown();
                }
 #endif
@@ -811,7 +811,7 @@ haltsys:
        if (cpureset_delay > 0)
                delay(cpureset_delay * 1000);
        cpu_reset();
-       for(;;) ;
+       for (;;) ;
        /* NOTREACHED */
 }
 
index 0c7dc79..ef68fe6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: armish_machdep.c,v 1.30 2014/07/13 22:53:38 uebayasi Exp $ */
+/*     $OpenBSD: armish_machdep.c,v 1.31 2014/07/21 17:25:47 uebayasi Exp $ */
 /*     $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */
 
 /*
@@ -264,7 +264,7 @@ boot(int howto)
         * that it cannot page part of the binary in as the filesystem has
         * been unmounted.
         */
-       if (!(howto & RB_NOSYNC))
+       if ((howto & RB_NOSYNC) == 0)
                bootsync(howto);
 
        if_downall();
@@ -285,8 +285,8 @@ haltsys:
        /* Make sure IRQ's are disabled */
        IRQdisable;
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN) {
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0) {
                        board_powerdown();
                        printf("WARNING: powerdown failed!\n");
                }
index f1fc83a..803de69 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: armv7_machdep.c,v 1.13 2014/07/13 22:53:38 uebayasi Exp $ */
+/*     $OpenBSD: armv7_machdep.c,v 1.14 2014/07/21 17:25:47 uebayasi Exp $ */
 /*     $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */
 
 /*
@@ -280,7 +280,7 @@ boot(int howto)
         * that it cannot page part of the binary in as the filesystem has
         * been unmounted.
         */
-       if (!(howto & RB_NOSYNC))
+       if ((howto & RB_NOSYNC) == 0)
                bootsync(howto);
 
        if_downall();
@@ -299,9 +299,8 @@ boot(int howto)
        /* Make sure IRQ's are disabled */
        IRQdisable;
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN) {
-
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0) {
                        printf("\nAttempting to power down...\n");
                        delay(500000);
                        platform_powerdown();
index 0e5bb03..8735ca2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.70 2014/07/13 22:53:38 uebayasi Exp $   */
+/*     $OpenBSD: machdep.c,v 1.71 2014/07/21 17:25:47 uebayasi Exp $   */
 /*
  * Copyright (c) 2007 Miodrag Vallat.
  *
@@ -321,7 +321,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -330,7 +330,7 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
                printf("System halted.\n\n");
                bootstack();
                cmmu_shutdown();
index 0a149c0..a9bc5cb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.231 2014/07/13 22:53:38 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.232 2014/07/21 17:25:47 uebayasi Exp $  */
 
 /*
  * Copyright (c) 1999-2003 Michael Shalayeff
@@ -908,7 +908,7 @@ boot(int howto)
 
        boothowto = howto | (boothowto & RB_HALT);
 
-       if (!(howto & RB_NOSYNC)) {
+       if ((howto & RB_NOSYNC) == 0) {
                waittime = 0;
                vfs_shutdown();
 
@@ -924,7 +924,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -941,8 +941,8 @@ haltsys:
        if (cold_hook)
                (*cold_hook)(HPPA_COLD_COLD);
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN && cold_hook) {
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0 && cold_hook) {
                        printf("Powering off...");
                        DELAY(2000000);
                        (*cold_hook)(HPPA_COLD_OFF);
index 88a80d6..5578ef0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.69 2014/07/13 22:53:39 uebayasi Exp $   */
+/*     $OpenBSD: machdep.c,v 1.70 2014/07/21 17:25:47 uebayasi Exp $   */
 
 /*
  * Copyright (c) 2005 Michael Shalayeff
@@ -545,7 +545,7 @@ boot(int howto)
 
        boothowto = howto | (boothowto & RB_HALT);
 
-       if (!(howto & RB_NOSYNC)) {
+       if ((howto & RB_NOSYNC) == 0) {
                waittime = 0;
                vfs_shutdown();
 
@@ -561,7 +561,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -574,8 +574,8 @@ haltsys:
        if (cold_hook)
                (*cold_hook)(HPPA_COLD_COLD);
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN && cold_hook) {
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0 && cold_hook) {
                        printf("Powering off...");
                        DELAY(2000000);
                        (*cold_hook)(HPPA_COLD_OFF);
index 559b430..e51d974 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.549 2014/07/14 08:36:31 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.550 2014/07/21 17:25:47 uebayasi Exp $  */
 /*     $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $    */
 
 /*-
@@ -2559,7 +2559,7 @@ boot(int howto)
 {
        struct device *mainbus;
 
-       if (howto & RB_POWERDOWN)
+       if ((howto & RB_POWERDOWN) != 0)
                lid_suspend = 0;
 
        if (cold) {
@@ -2587,7 +2587,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -2600,19 +2600,19 @@ haltsys:
        i386_broadcast_ipi(I386_IPI_HALT);
 #endif
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
 #if NACPI > 0 && !defined(SMALL_KERNEL)
                extern int acpi_enabled;
 
                if (acpi_enabled) {
                        delay(500000);
-                       if (howto & RB_POWERDOWN)
+                       if ((howto & RB_POWERDOWN) != 0)
                                acpi_powerdown();
                }
 #endif
 
 #if NAPM > 0
-               if (howto & RB_POWERDOWN) {
+               if ((howto & RB_POWERDOWN) != 0) {
                        int rv;
 
                        printf("\nAttempting to power down...\n");
@@ -2656,7 +2656,7 @@ haltsys:
 
        printf("rebooting...\n");
        cpu_reset();
-       for(;;) ;
+       for (;;) ;
        /* NOTREACHED */
 }
 
index b9af60d..6056240 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.39 2014/07/14 08:36:31 uebayasi Exp $   */
+/*     $OpenBSD: machdep.c,v 1.40 2014/07/21 17:25:47 uebayasi Exp $   */
 /*     $NetBSD: machdep.c,v 1.1 2006/09/01 21:26:18 uwe Exp $  */
 
 /*-
@@ -217,7 +217,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -226,14 +226,14 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
+       if ((howto & RB_POWERDOWN) != 0) {
                _reg_write_1(LANDISK_PWRMNG, PWRMNG_POWEROFF);
                delay(1 * 1000 * 1000);
                printf("POWEROFF FAILED!\n");
                howto |= RB_HALT;
        }
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
                printf("\n");
                printf("The operating system has halted.\n");
                printf("Please press any key to reboot.\n\n");
index 60f2a66..584ba77 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.57 2014/07/19 18:01:23 pirofti Exp $ */
+/*     $OpenBSD: machdep.c,v 1.58 2014/07/21 17:25:47 uebayasi Exp $ */
 
 /*
  * Copyright (c) 2009, 2010, 2014 Miodrag Vallat.
@@ -930,7 +930,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -941,8 +941,8 @@ haltsys:
                config_suspend(mainbus, DVACT_POWERDOWN);
        }
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN) {
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0) {
                        if (sys_platform->powerdown != NULL) {
                                printf("System Power Down.\n");
                                (*(sys_platform->powerdown))();
index 514aad9..05dbd01 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.107 2014/07/13 22:53:39 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.108 2014/07/21 17:25:47 uebayasi Exp $  */
 /*
  * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
  * Copyright (c) 1996 Nivas Madhur
@@ -495,7 +495,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -505,13 +505,13 @@ haltsys:
                config_suspend(mainbus, DVACT_POWERDOWN);
 
        /* LUNA-88K supports automatic powerdown */
-       if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
+       if ((howto & RB_POWERDOWN) != 0) {
                printf("attempting to power down...\n");
                powerdown();
                /* if failed, fall through. */
        }
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
                printf("halted\n\n");
        } else {
                /* Reset all cpus, which causes reboot */
index 9a6fcee..7f56fad 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.159 2014/07/13 22:53:39 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.160 2014/07/21 17:25:47 uebayasi Exp $  */
 /*     $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $   */
 
 /*
@@ -829,7 +829,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -838,8 +838,8 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if (howto & RB_HALT) {
-               if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0) {
 #if NADB > 0
                        delay(1000000);
                        adb_poweroff();
index eda7c3e..311f6ed 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.59 2014/07/13 22:53:39 uebayasi Exp $ */
+/*     $OpenBSD: machdep.c,v 1.60 2014/07/21 17:25:47 uebayasi Exp $ */
 
 /*
  * Copyright (c) 2009, 2010 Miodrag Vallat.
@@ -694,7 +694,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -703,8 +703,8 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN)
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0)
                        printf("System Power Down not supported,"
                        " halting system.\n");
                else
index 02cdb50..71884fc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.147 2014/07/13 22:53:39 uebayasi Exp $ */
+/*     $OpenBSD: machdep.c,v 1.148 2014/07/21 17:25:47 uebayasi Exp $ */
 
 /*
  * Copyright (c) 2003-2004 Opsycon AB  (www.opsycon.se / www.opsycon.com)
@@ -857,7 +857,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -866,8 +866,8 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if (howto & RB_HALT) {
-               if (howto & RB_POWERDOWN)
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0)
                        printf("System Power Down.\n");
                else
                        printf("System Halt.\n");
index d3ef1e9..230d531 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.54 2014/07/13 22:53:39 uebayasi Exp $   */
+/*     $OpenBSD: machdep.c,v 1.55 2014/07/21 17:25:47 uebayasi Exp $   */
 /*     $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $   */
 
 /*
@@ -1066,8 +1066,8 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if (howto & RB_HALT) {
-               if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
+       if ((howto & RB_HALT) != 0) {
+               if ((howto & RB_POWERDOWN) != 0) {
                        ;
                }
 
index fd0008a..e0ae61f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.41 2014/07/13 22:53:39 uebayasi Exp $   */
+/*     $OpenBSD: machdep.c,v 1.42 2014/07/21 17:25:47 uebayasi Exp $   */
 /*     OpenBSD: machdep.c,v 1.105 2005/04/11 15:13:01 deraadt Exp      */
 
 /*
@@ -544,7 +544,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -553,16 +553,16 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if ((howto & RB_HALT) || (howto & RB_POWERDOWN)) {
+       if ((howto & RB_HALT) != 0 || (howto & RB_POWERDOWN) != 0) {
                printf("halted\n\n");
                romhalt();
        }
 
        printf("rebooting\n\n");
        i = 1;
-       if (howto & RB_SINGLE)
+       if ((howto & RB_SINGLE) != 0)
                str[i++] = 's';
-       if (howto & RB_KDB)
+       if ((howto & RB_KDB) != 0)
                str[i++] = 'd';
        if (i > 1) {
                str[0] = '-';
index ccc910c..2f12ff2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.163 2014/07/13 22:53:39 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.164 2014/07/21 17:25:47 uebayasi Exp $  */
 /*     $NetBSD: machdep.c,v 1.85 1997/09/12 08:55:02 pk Exp $ */
 
 /*
@@ -553,7 +553,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -562,9 +562,9 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if ((howto & RB_HALT) || (howto & RB_POWERDOWN)) {
+       if ((howto & RB_HALT) != 0 || (howto & RB_POWERDOWN) != 0) {
 #if defined(SUN4M)
-               if (howto & RB_POWERDOWN) {
+               if ((howto & RB_POWERDOWN) != 0) {
                        printf("attempting to power down...\n");
 #if NTCTRL > 0
                        tadpole_powerdown();
@@ -582,9 +582,9 @@ haltsys:
 
        printf("rebooting\n\n");
        i = 1;
-       if (howto & RB_SINGLE)
+       if ((howto & RB_SINGLE) != 0)
                str[i++] = 's';
-       if (howto & RB_KDB)
+       if ((howto & RB_KDB) != 0)
                str[i++] = 'd';
        if (i > 1) {
                str[0] = '-';
index 35c6b86..3389bc4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.166 2014/07/13 22:53:39 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.167 2014/07/21 17:25:47 uebayasi Exp $  */
 /*     $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */
 
 /*-
@@ -643,7 +643,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -653,7 +653,7 @@ haltsys:
                config_suspend(mainbus, DVACT_POWERDOWN);
 
        /* If powerdown was requested, do it. */
-       if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
+       if ((howto & RB_POWERDOWN) != 0) {
                /* Let the OBP do the work. */
                OF_poweroff();
                printf("WARNING: powerdown failed!\n");
@@ -662,7 +662,7 @@ haltsys:
                 */
        }
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
                printf("halted\n\n");
                OF_exit();
                panic("PROM exit failed");
@@ -682,9 +682,9 @@ haltsys:
                str[0] = '\0';
        }
                        
-       if (howto & RB_SINGLE)
+       if ((howto & RB_SINGLE) != 0)
                str[i++] = 's';
-       if (howto & RB_KDB)
+       if ((howto & RB_KDB) != 0)
                str[i++] = 'd';
        if (i > 1) {
                if (str[0] == '\0')
index fbe919e..68bcd96 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.142 2014/07/13 22:53:39 uebayasi Exp $ */
+/* $OpenBSD: machdep.c,v 1.143 2014/07/21 17:25:47 uebayasi Exp $ */
 /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $         */
 
 /*
@@ -535,7 +535,7 @@ boot(int howto)
        splhigh();
        cold = 1;
 
-       if (howto & RB_DUMP)
+       if ((howto & RB_DUMP) != 0)
                dumpsys();
 
 haltsys:
@@ -544,7 +544,7 @@ haltsys:
        if (mainbus != NULL)
                config_suspend(mainbus, DVACT_POWERDOWN);
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
                if (dep_call->cpu_halt)
                        (*dep_call->cpu_halt) ();
                printf("halting (in tight loop); hit\n\t^P\n\tHALT\n\n");
index bae2929..60c96d8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: zaurus_machdep.c,v 1.50 2014/07/13 22:53:39 uebayasi Exp $    */
+/*     $OpenBSD: zaurus_machdep.c,v 1.51 2014/07/21 17:25:47 uebayasi Exp $    */
 /*     $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */
 
 /*
@@ -295,7 +295,7 @@ boot(int howto)
        struct device *mainbus;
        extern int lid_suspend;
 
-       if (howto & RB_POWERDOWN)
+       if ((howto & RB_POWERDOWN) != 0)
                lid_suspend = 0;
 
        if (cold) {
@@ -311,7 +311,7 @@ boot(int howto)
         * that it cannot page part of the binary in as the filesystem has
         * been unmounted.
         */
-       if (!(howto & RB_NOSYNC))
+       if ((howto & RB_NOSYNC) == 0)
                bootsync(howto);
 
        if_downall();
@@ -332,9 +332,9 @@ haltsys:
        /* Make sure IRQ's are disabled */
        IRQdisable;
 
-       if (howto & RB_HALT) {
+       if ((howto & RB_HALT) != 0) {
 #if NAPM > 0
-               if (howto & RB_POWERDOWN) {
+               if ((howto & RB_POWERDOWN) != 0) {
 
                        printf("\nAttempting to power down...\n");
                        delay(6000000);