1. 01 8月, 2006 1 次提交
  2. 03 7月, 2006 1 次提交
  3. 01 7月, 2006 1 次提交
  4. 22 4月, 2006 3 次提交
  5. 31 3月, 2006 13 次提交
  6. 10 9月, 2005 3 次提交
  7. 24 8月, 2005 1 次提交
  8. 28 7月, 2005 1 次提交
    • D
      [PATCH] pcmcia: fix sharing IRQs and request_irq without IRQ_HANDLE_PRESENT · a1b274fb
      Dominik Brodowski 提交于
      Debugging and description from: Noah Misch <noah@cs.caltech.edu>
      
      When a driver calls pcmcia_request_irq with IRQ_HANDLE_PRESENT unset, it looks
      for an open IRQ by request_irq()ing with a dummy handler and NULL dev_info.
      free_irq uses dev_info as a key for identifying the handler to free among
      those sharing an IRQ, so request_irq returns -EINVAL if dev_info is NULL and
      the IRQ may be shared.  That unknown error code is the -EINVAL.
      
      It looks like only pcnet_cs and axnet_cs are affected.  Most other drivers let
      pcmcia_request_irq install their interrupt handlers.  sym53c500_cs requests
      its IRQ manually, but it cannot share an IRQ.
      
      The appended patch changes pcmcia_request_irq to pass an arbitrary, unique,
      non-NULL dev_info with the dummy handler.
      Signed-off-by: NDominik Brodowski <linux@dominikbrodowski.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a1b274fb
  9. 08 7月, 2005 3 次提交
  10. 28 6月, 2005 3 次提交