An error occurred fetching the project authors.
  1. 23 Sep, 2008 5 commits
  2. 26 Aug, 2008 1 commit
  3. 07 Aug, 2008 2 commits
  4. 05 Aug, 2008 1 commit
  5. 12 Jul, 2008 1 commit
  6. 07 Jul, 2008 1 commit
  7. 23 May, 2008 1 commit
  8. 17 May, 2008 1 commit
  9. 08 May, 2008 1 commit
  10. 19 Apr, 2008 1 commit
  11. 04 Feb, 2008 1 commit
  12. 28 Jan, 2008 2 commits
  13. 11 Oct, 2007 1 commit
  14. 12 Jul, 2007 2 commits
  15. 09 Oct, 2006 1 commit
    • David Howells's avatar
      IRQ: Use the new typedef for interrupt handler function pointers · 40220c1a
      David Howells authored
      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: default avatarDavid Howells <dhowells@redhat.com>
      40220c1a
  16. 06 Oct, 2006 1 commit
  17. 02 Oct, 2006 1 commit
  18. 03 Jul, 2006 1 commit
  19. 19 Jun, 2006 1 commit
  20. 08 Jun, 2006 1 commit
  21. 31 Mar, 2006 2 commits
  22. 26 Mar, 2006 1 commit
  23. 21 Mar, 2006 1 commit
    • Russell King's avatar
      [ARM] Remove asm/arch/irq.h · 411ef7f4
      Russell King authored
      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: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      411ef7f4
  24. 13 Jan, 2006 1 commit
  25. 09 Jan, 2006 1 commit
    • Russell King's avatar
      [PATCH] IRQ type flags · 9ded96f2
      Russell King authored
      Some ARM platforms have the ability to program the interrupt controller to
      detect various interrupt edges and/or levels.  For some platforms, this is
      critical to setup correctly, particularly those which the setting is dependent
      on the device.
      
      Currently, ARM drivers do (eg) the following:
      
      	err = request_irq(irq, ...);
      
      	set_irq_type(irq, IRQT_RISING);
      
      However, if the interrupt has previously been programmed to be level sensitive
      (for whatever reason) then this will cause an interrupt storm.
      
      Hence, if we combine set_irq_type() with request_irq(), we can then safely set
      the type prior to unmasking the interrupt.  The unfortunate problem is that in
      order to support this, these flags need to be visible outside of the ARM
      architecture - drivers such as smc91x need these flags and they're
      cross-architecture.
      
      Finally, the SA_TRIGGER_* flag passed to request_irq() should reflect the
      property that the device would like.  The IRQ controller code should do its
      best to select the most appropriate supported mode.
      Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      9ded96f2
  26. 05 Jan, 2006 2 commits
  27. 12 Nov, 2005 1 commit
  28. 08 Nov, 2005 1 commit
    • Richard Purdie's avatar
      [ARM] 3093/1: SharpSL PCMCIA Updates for Cxx00 models · a63ae442
      Richard Purdie authored
      Patch from Richard Purdie
      
      The Sharp SL-Cxx00 models have a combined power control for the SD
      and CF slot 0. This patch adds hooks to the scoop driver to allow
      machines to provide a custom control function for this and such a
      function is added for spitz/akita/borzoi.
      
      It also moves the gpio init code into the machine files as this
      is machine dependent and differs between some models. A couple of
      warnings when compiling for collie are also fixed.
      
      Signed-off-by: Richard Purdie
      Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      a63ae442
  29. 30 Oct, 2005 1 commit
  30. 29 Oct, 2005 1 commit
  31. 14 Oct, 2005 1 commit