projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aad7b60
)
staging: dgnc: dgnc_tty: Do not use 0 for NULL pointer
author
Sachin Kamat
<sachin.kamat@linaro.org>
Wed, 9 Oct 2013 10:28:28 +0000
(15:58 +0530)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/drivers/staging/dgnc/dgnc_tty.c
b/drivers/staging/dgnc/dgnc_tty.c
index c6fee11632f7d7433e8246975dceab598df6126d..a6c6aba82d724d1f6a97029a39e83de385366337 100644
(file)
--- a/
drivers/staging/dgnc/dgnc_tty.c
+++ b/
drivers/staging/dgnc/dgnc_tty.c
@@
-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.