]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
staging: dgnc: dgnc_tty: Do not use 0 for NULL pointer
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 9 Oct 2013 10:28:28 +0000 (15:58 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Oct 2013 22:36:31 +0000 (15:36 -0700)
Do not use 0 for NULL pointer.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_tty.c

index c6fee11632f7d7433e8246975dceab598df6126d..a6c6aba82d724d1f6a97029a39e83de385366337 100644 (file)
@@ -520,7 +520,7 @@ void dgnc_sniff_nowait_nolock(struct channel_t *ch, uchar *text, uchar *buf, int
                /*
                 *  Loop while data remains.
                 */
-               while (nbuf > 0 && ch->ch_sniff_buf != 0) {
+               while (nbuf > 0 && ch->ch_sniff_buf) {
                        /*
                         *  Determine the amount of available space left in the
                         *  buffer.  If there's none, wait until some appears.