1. 14 9月, 2008 2 次提交
  2. 07 8月, 2008 1 次提交
  3. 05 8月, 2008 1 次提交
  4. 13 7月, 2008 1 次提交
  5. 07 7月, 2008 10 次提交
  6. 03 6月, 2008 1 次提交
    • R
      [ARM] pxa: fix tosa.c build error · 0ef2cfc0
      Russell King 提交于
      Work around:
      arch/arm/mach-pxa/tosa.c: In function `tosa_poweroff':
      arch/arm/mach-pxa/tosa.c:470: error: `GPIO_OUT' undeclared (first use in this function)
      arch/arm/mach-pxa/tosa.c:470: error: (Each undeclared identifier is reported only once
      arch/arm/mach-pxa/tosa.c:470: error: for each function it appears in.)
      
      The proper fix exists in the PXA branch of my kernel git tree, which
      will be pushed during the next merge window.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      0ef2cfc0
  7. 09 5月, 2008 1 次提交
  8. 19 4月, 2008 8 次提交
  9. 04 2月, 2008 1 次提交
  10. 02 2月, 2008 1 次提交
  11. 28 1月, 2008 1 次提交
  12. 21 1月, 2008 1 次提交
  13. 12 7月, 2007 2 次提交
  14. 08 3月, 2007 1 次提交
  15. 09 10月, 2006 1 次提交
    • D
      IRQ: Use the new typedef for interrupt handler function pointers · 40220c1a
      David Howells 提交于
      Use the new typedef for interrupt handler function pointers rather than
      actually spelling out the full thing each time.  This was scripted with the
      following small shell script:
      
      #!/bin/sh
      egrep -nHrl -e 'irqreturn_t[ 	]*[(][*]' $* |
      while read i
      do
          echo $i
          perl -pi -e 's/irqreturn_t\s*[(]\s*[*]\s*([_a-zA-Z0-9]*)\s*[)]\s*[(]\s*int\s*,\s*void\s*[*]\s*[)]/irq_handler_t \1/g' $i || exit $?
      done
      Signed-Off-By: NDavid Howells <dhowells@redhat.com>
      40220c1a
  16. 07 10月, 2006 1 次提交
  17. 03 7月, 2006 1 次提交
  18. 21 6月, 2006 1 次提交
  19. 20 6月, 2006 1 次提交
  20. 01 4月, 2006 1 次提交
  21. 22 3月, 2006 1 次提交
    • R
      [ARM] Remove asm/arch/irq.h · 411ef7f4
      Russell King 提交于
      asm/arch/irq.h used to be included from asm/irq.h, but was removed
      from the ARM kernel a long time ago.  Consequently, the contents
      of asm/arch/irq.h (which mostly contain a definition for fixup_irq())
      have not been used.  Hence, remove asm/arch/irq.h.
      
      Some machine support files incorrectly included this file, making
      little or no use of the contents.  Move the contents to a local
      include file, and remove those include statements as well.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      411ef7f4
  22. 14 1月, 2006 1 次提交