1. 28 1月, 2008 2 次提交
  2. 12 10月, 2007 1 次提交
  3. 12 7月, 2007 2 次提交
  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. 28 9月, 2006 1 次提交
    • D
      USB: pxa2xx_udc understands GPIO based VBUS sensing · b2bbb20b
      David Brownell 提交于
      This updates the PXA 25x UDC board-independent infrastructure for VBUS sensing
      and the D+ pullup.  The original code evolved from rather bizarre support on
      Intel's "Lubbock" reference hardware, so that on more sensible hardware it
      doesn't work as well as it could/should.
      
      The change is just to teach the UDC driver how to use built-in PXA GPIO pins
      directly.  This reduces the amount of board-specfic object code needed, and
      enables the use of a VBUS sensing IRQ on boards (like Gumstix) that have one.
      With VBUS sensing, the UDC is unclocked until a host is actually connected.
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      b2bbb20b
  7. 03 7月, 2006 1 次提交
  8. 20 6月, 2006 1 次提交
  9. 01 4月, 2006 2 次提交
  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. 09 1月, 2006 1 次提交
    • R
      [PATCH] IRQ type flags · 9ded96f2
      Russell King 提交于
      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: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      9ded96f2
  13. 09 11月, 2005 1 次提交
    • R
      [ARM] 3093/1: SharpSL PCMCIA Updates for Cxx00 models · a63ae442
      Richard Purdie 提交于
      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: NRussell King <rmk+kernel@arm.linux.org.uk>
      a63ae442
  14. 30 10月, 2005 2 次提交
  15. 10 10月, 2005 1 次提交
  16. 15 9月, 2005 1 次提交
  17. 13 9月, 2005 3 次提交
  18. 10 9月, 2005 1 次提交
  19. 08 9月, 2005 3 次提交
  20. 06 9月, 2005 1 次提交
  21. 04 7月, 2005 2 次提交
  22. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4