1. 16 12月, 2009 9 次提交
  2. 25 11月, 2009 12 次提交
  3. 06 11月, 2009 6 次提交
  4. 28 10月, 2009 1 次提交
    • A
      ACPI: clean up video.c boundary checks and types · 52a2b11c
      Arjan van de Ven 提交于
      proc.c and video.c are a bit sloppy around types and style,
      confusing gcc for a new feature that'll be in 2.6.33 and will
      cause a warning on the current code.
      
      This patch changes
      
      if  (foo + 1 > sizeof bar)
      
      into
      
      if (foo >= sizeof(bar))
      
      which is more kernel-style.
      
      it also changes a variable in proc.c to unsigned; it gets assigned
      a value from an unsigned type, and is then only compared for > not
      for negative, so using unsigned is just outright the right type
      Signed-off-by: NArjan van de Ven <arjan@linux.intel.com>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      52a2b11c
  5. 13 10月, 2009 3 次提交
  6. 10 10月, 2009 1 次提交
  7. 07 10月, 2009 1 次提交
  8. 03 10月, 2009 5 次提交
  9. 02 10月, 2009 2 次提交