md: Add module.h to all files using it implicitly
[linux-2.6-block.git] / scripts / checkpatch.pl
index 3dfc47134e51e9cbee67aab2490360927ff7c0f4..0b3e35c9ef08552b4b67f62479895ad826388523 100755 (executable)
@@ -2932,11 +2932,11 @@ sub process {
                                }
                        }
                        if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
-                               my $herectx = $here . "\n";;
+                               my $herectx = $here . "\n";
                                my $cnt = statement_rawlines($block);
 
                                for (my $n = 0; $n < $cnt; $n++) {
-                                       $herectx .= raw_line($linenr, $n) . "\n";;
+                                       $herectx .= raw_line($linenr, $n) . "\n";
                                }
 
                                WARN("BRACES",