1. 31 3月, 2006 4 次提交
  2. 28 3月, 2006 1 次提交
  3. 27 3月, 2006 1 次提交
  4. 21 3月, 2006 1 次提交
  5. 06 3月, 2006 1 次提交
    • R
      [SERIAL] Fix two bugs in parport_serial · 7a171cdc
      Russell King 提交于
      Steinar H. Gunderson reported:
      
        - For some reason, it detects the 9845 as a 9735 -- it appears this is
          simply related to the ordering in parport_serial_pci_tbl[]. If we move
          the 9845 up above the 9735, it prints out 9710:9845, but no change in
          behaviour. (We didn't find out why this was the case; we left it alone
          since it didn't affect our problem.)
        - The card has no parallel port (at least no physical ones), yet it reports
          (via its subsystem ID of 0x0014) one parallel port and four serial ports.
          The probe for the parallel port fails, and the driver just aborts. Thus,
          it doesn't find the serial ports.
      
      Fix the debugging code to use dev_dbg, but don't bother displaying the
      PCI ID of the detected board (that's accessible via other means.)
      
      Also, arrange for parport_register() to return 0 even if it finds no
      ports.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      7a171cdc
  6. 04 2月, 2006 4 次提交
  7. 23 1月, 2006 1 次提交
  8. 11 1月, 2006 1 次提交
  9. 10 1月, 2006 1 次提交
  10. 09 1月, 2006 2 次提交
  11. 07 1月, 2006 9 次提交
  12. 06 1月, 2006 4 次提交
  13. 07 11月, 2005 1 次提交
  14. 22 10月, 2005 1 次提交
  15. 11 9月, 2005 1 次提交
  16. 09 9月, 2005 1 次提交
  17. 08 9月, 2005 1 次提交
  18. 24 8月, 2005 1 次提交
  19. 27 7月, 2005 1 次提交
  20. 08 7月, 2005 2 次提交
  21. 02 7月, 2005 1 次提交
    • G
      [PATCH] PCI: clean up dynamic pci id logic · 75865858
      Greg Kroah-Hartman 提交于
      The dynamic pci id logic has been bothering me for a while, and now that
      I started to look into how to move some of this to the driver core, I
      thought it was time to clean it all up.
      
      It ends up making the code smaller, and easier to follow, and fixes a
      few bugs at the same time (dynamic ids were not being matched
      everywhere, and so could be missed on some call paths for new devices,
      semaphore not needed to be grabbed when adding a new id and calling the
      driver core, etc.)
      
      I also renamed the function pci_match_device() to pci_match_id() as
      that's what it really does.
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      75865858