28 Feb, 2009

8 commits


16 Jan, 2009

6 commits


07 Jan, 2009

21 commits


21 Oct, 2008

1 commit

  • Update assorted email addresses and related info to point
    to a single current, valid address.

    additionally
    - trivial CREDITS entry updates. (Not that this file means much any more)
    - remove arjans dead redhat.com address from powernow driver

    Signed-off-by: Dave Jones
    Signed-off-by: Linus Torvalds

    Dave Jones
     

17 Oct, 2008

4 commits

  • Signed-off-by: Andy Whitcroft
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Andy Whitcroft
     
  • When specifying case we may have comments and/or braces at the end without
    actually having a 'statement'. Allow for these to occur in any order.

    Signed-off-by: Andy Whitcroft
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Andy Whitcroft
     
  • When ignoring a macro in the middle of a conditional, we need to ignore
    the macro start and any continuation lines.

    Signed-off-by: Andy Whitcroft
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Andy Whitcroft
     
  • When reporting some complex trailing statements we report only the
    starting line of the error, that tends to imply the shown line is in error
    and confuse the reader. As we do know where the actual error is report
    that line too with an appropriate gap marker where applicable.

    #ERROR: trailing statements should be on next line
    #1: FILE: Z202.c:1:
    + for (pbh = page_buffers(bh->b_page); pbh != bh;
    + pbh = pbh->b_this_page, key++);
    #ERROR: trailing statements should be on next line
    #4: FILE: Z202.c:4:
    + for (pbh = page_buffers(bh->b_page);
    [...]
    + pbh = pbh->b_this_page, key++);

    Signed-off-by: Andy Whitcroft
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Andy Whitcroft