1. 30 4月, 2013 4 次提交
  2. 18 4月, 2013 1 次提交
  3. 28 2月, 2013 1 次提交
  4. 22 2月, 2013 5 次提交
  5. 05 2月, 2013 1 次提交
  6. 21 12月, 2012 1 次提交
  7. 18 12月, 2012 12 次提交
  8. 09 11月, 2012 1 次提交
  9. 06 10月, 2012 4 次提交
  10. 22 8月, 2012 1 次提交
  11. 31 7月, 2012 5 次提交
  12. 01 6月, 2012 2 次提交
  13. 17 4月, 2012 1 次提交
  14. 24 3月, 2012 1 次提交
    • J
      checkpatch: check for quoted strings broken across lines · ca56dc09
      Josh Triplett 提交于
      checkpatch already makes an exception to the 80-column rule for quoted
      strings, and Documentation/CodingStyle recommends not splitting quoted
      strings across lines, because it breaks the ability to grep for the
      string.  Rather than just permitting this, actively warn about quoted
      strings split across lines.
      
      Test case:
      
      void context(void)
      {
      	struct { unsigned magic; const char *strdata; } foo[] = {
      		{ 42, "these strings"
      		      "do not produce warnings" },
      		{ 256, "though perhaps"
      		       "they should" },
      	};
      	pr_err("this string"
      	       " should produce a warning\n");
      	pr_err("this multi-line string\n"
      	       "should not produce a warning\n");
      	asm ("this asm\n\t"
      	     "should not produce a warning");
      }
      
      Results of checkpatch on that test case:
      
      WARNING: quoted string split across lines
      +	       " should produce a warning\n");
      
      total: 0 errors, 1 warnings, 15 lines checked
      Signed-off-by: NJosh Triplett <josh@joshtriplett.org>
      Acked-by: NJoe Perches <joe@perches.com>
      Cc: Andy Whitcroft <apw@canonical.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      ca56dc09