Re: [PATCH] scripts: checkpatch.pl: Fix misused memset detection

2013-01-13 Thread Joe Perches
On Mon, 2013-01-14 at 13:04 +1000, Cruz Julian Bishop wrote: > Previously, checking memset declarations would generate > a lot of errors saying that $ms_size was not defined. Try this one instead: https://lkml.org/lkml/2013/1/10/444 -- To unsubscribe from this list: send the line "unsubscribe

[PATCH] scripts: checkpatch.pl: Fix misused memset detection

2013-01-13 Thread Cruz Julian Bishop
Previously, checking memset declarations would generate a lot of errors saying that $ms_size was not defined. This commit fixes that. Signed-off-by: Cruz Julian Bishop --- scripts/checkpatch.pl |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/checkpatch.pl b/sc