checkpatch: add a licensing hint

This commit is contained in:
Lubomir Rintel 2018-07-11 11:32:11 +02:00 committed by Thomas Haller
parent 26910ebdd7
commit 2b152a69c4

View file

@ -124,6 +124,7 @@ complain ('Trailing whitespace') if $line =~ /[ \t]$/;
complain ('Don\'t use glib typedefs for char/short/int/long/float/double') if $line =~ /\bg(char|short|int|long|float|double)\b/;
complain ("Don't use \"$1 $2\" instead of \"$2 $1\"") if $line =~ /\b(char|short|int|long) +(unsigned|signed)\b/;
complain ("Don't use \"unsigned int\" but just use \"unsigned\"") if $line =~ /\b(unsigned) +(int)\b/;
complain ("Please use LGPL2+ for new files") if $is_patch and $line =~ /under the terms of the GNU General Public License/;
# Further on we process stuff without comments.
$_ = $line;