1. 28 1月, 2008 1 次提交
  2. 12 7月, 2007 2 次提交
  3. 08 3月, 2007 1 次提交
  4. 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
  5. 07 10月, 2006 1 次提交
  6. 03 7月, 2006 1 次提交
  7. 21 6月, 2006 1 次提交
  8. 20 6月, 2006 1 次提交
  9. 01 4月, 2006 1 次提交
  10. 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
  11. 14 1月, 2006 1 次提交
  12. 21 11月, 2005 1 次提交
  13. 09 11月, 2005 2 次提交
  14. 06 11月, 2005 1 次提交