Re: [PATCH] staging: speakup: (coding style) Rewrite comparisons to NULL

2016-01-28 Thread Greg KH
On Thu, Nov 19, 2015 at 01:00:16PM +0100, Christian Colic wrote: > linux-ker...@vger.kernel.org > Bcc: > Subject: [PATCH] staging: speakup: (coding style) Rewrite comparisons to NULL > Reply-To: Why is this in the body of the email? I can't take this like this :( > >

[PATCH] staging: speakup: (coding style) Rewrite comparisons to NULL

2015-11-19 Thread Christian Colic
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 --- drivers/staging/speakup/buffers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/speakup/buffers.c b/

[PATCH] staging: speakup: (coding style) Rewrite comparisons to NULL

2015-11-19 Thread Christian Colic
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 Coli