1. 03 7月, 2006 1 次提交
  2. 02 7月, 2006 1 次提交
  3. 01 7月, 2006 3 次提交
  4. 30 6月, 2006 1 次提交
  5. 29 6月, 2006 21 次提交
  6. 28 6月, 2006 3 次提交
  7. 27 6月, 2006 2 次提交
  8. 26 6月, 2006 4 次提交
  9. 24 6月, 2006 2 次提交
  10. 23 6月, 2006 2 次提交
    • J
      [PATCH] OSS: cs46xx cleanup and tiny bugfix · 2eebb192
      Jesper Juhl 提交于
      Here's a patch for cs46xx that
       - (mostly) cleans up the cs46xx driver according to CodingStyle
       - removes a bunch of pointless casts
       - fixes a small, potential use of uninitialized variable, bug
       - reduces the size of the compiled code by 36 bytes
       - reduces the size of the source file by 1831 bytes
      
      I know I should probably have split this into bits, but since I only
      thought of that *after* doing all the edits, splitting it up would have
      been a royal pain. And since these are all pretty trivial changes I thought
      I'd just submit the one huge patch and hope people could live with it (if
      not, then just tell me and I'll split it).
      
      The bug fix that's in there may be hard to spot, so I'll point it out. It's
      the
         -       int val, valsave, mapped, ret;
         +       int val, valsave, ret;
         +       int mapped = 0;
      bit.
      Without that change we may use `mapped' uninitialized if, in cs_ioctl, the
      first test of "if(state)" is false and the second "if(state)" test is true.
      Signed-off-by: NJesper Juhl <jesper.juhl@gmail.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      2eebb192
    • S
      [PATCH] Au1550/1200: add missing PSC #define's, make OSS driver use the proper ones · f2c780c1
      Sergei Shtylyov 提交于
      Add missing PSC #define's required for the drivers using PSC on DBAu1550
      board (also fixing Au1550 PSC3 address) and all Au1200-based boards as
      well.  Make the OSS driver use the correct PSC definitions fo each board.
      Signed-off-by: NSergei Shtylyov <sshtylyov@ru.mvista.com>
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      f2c780c1