linux-ker...@vger.kernel.org 
Bcc: 
Subject: [PATCH] staging: speakup: (coding style) Rewrite comparisons to NULL
Reply-To: 

Rewrite comparisons to NULL so they dont show any checkpatch errors anymore.
"vc_cons[i].d != NULL" => "vc_cons[i].d"

Signed-off-by: Christian Colic <colic.christ...@gmail.com>
---
 drivers/staging/speakup/buffers.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/speakup/buffers.c 
b/drivers/staging/speakup/buffers.c
index 8565c23..b055b9e 100644
--- a/drivers/staging/speakup/buffers.c
+++ b/drivers/staging/speakup/buffers.c
@@ -27,7 +27,7 @@ void speakup_start_ttys(void)
        for (i = 0; i < MAX_NR_CONSOLES; i++) {
                if (speakup_console[i] && speakup_console[i]->tty_stopped)
                        continue;
-               if ((vc_cons[i].d != NULL) && (vc_cons[i].d->port.tty != NULL))
+               if ((vc_cons[i].d) && (vc_cons[i].d->port.tty))
                        start_tty(vc_cons[i].d->port.tty);
        }
 }
@@ -38,7 +38,7 @@ static void speakup_stop_ttys(void)
        int i;
 
        for (i = 0; i < MAX_NR_CONSOLES; i++)
-               if ((vc_cons[i].d != NULL) && (vc_cons[i].d->port.tty != NULL))
+               if ((vc_cons[i].d) && (vc_cons[i].d->port.tty))
                        stop_tty(vc_cons[i].d->port.tty);
 }
 
-- 
2.5.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to