Re: [PATCH] checkpatch: Warn on bare unsigned or signed declarations without int

2016-03-05 Thread David Miller
From: Joe Perches Date: Fri, 4 Mar 2016 21:23:44 -0800 > Kernel style prefers "unsigned int " over "unsigned " > and "signed int " over "signed ". > > Emit a warning for these simple signed/unsigned declarations. > Fix it too if desired. > > Signed-off-by: Joe Perches

Re: [PATCH] checkpatch: Warn on bare unsigned or signed declarations without int

2016-03-05 Thread David Miller
From: Joe Perches Date: Fri, 4 Mar 2016 21:23:44 -0800 > Kernel style prefers "unsigned int " over "unsigned " > and "signed int " over "signed ". > > Emit a warning for these simple signed/unsigned declarations. > Fix it too if desired. > > Signed-off-by: Joe Perches Acked-by: David S.

[PATCH] checkpatch: Warn on bare unsigned or signed declarations without int

2016-03-04 Thread Joe Perches
Kernel style prefers "unsigned int " over "unsigned " and "signed int " over "signed ". Emit a warning for these simple signed/unsigned declarations. Fix it too if desired. Signed-off-by: Joe Perches --- scripts/checkpatch.pl | 20 1 file changed, 20

[PATCH] checkpatch: Warn on bare unsigned or signed declarations without int

2016-03-04 Thread Joe Perches
Kernel style prefers "unsigned int " over "unsigned " and "signed int " over "signed ". Emit a warning for these simple signed/unsigned declarations. Fix it too if desired. Signed-off-by: Joe Perches --- scripts/checkpatch.pl | 20 1 file changed, 20 insertions(+) diff