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 :(
>
>
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/
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