1. 08 Feb, 2004 32 commits
  2. 07 Feb, 2004 8 commits
    • Bartlomiej Zolnierkiewicz's avatar
      [PATCH] fix duplication of DMA {black,white}list in icside.c · 2724a14b
      Bartlomiej Zolnierkiewicz authored
      Always compile ide-dma.c if CONFIG_BLK_DEV_IDEDMA=y, mark PCI specific code
      with CONFIG_BLK_DEV_IDEDMA_PCI for now (it should migrate to ide_pcidma.c
      over a time).  This fixes a small bug - in_drive_list() from icside.c used
      !strstr() instead of strstr() so it was missing two entries from a blacklist.
      2724a14b
    • Alexander Viro's avatar
      [PATCH] Fix imm/ppa initializing bug in driver updates · 7de2696d
      Alexander Viro authored
      Let's play spot the bug here...
      
      Amazing that it survives in modular case...
      7de2696d
    • Bartlomiej Zolnierkiewicz's avatar
      [PATCH] fix too early probing of default IDE ports · 5b2654c7
      Bartlomiej Zolnierkiewicz authored
      It was broken by IDE modular fixes in 2.6.2.
      5b2654c7
    • Bartlomiej Zolnierkiewicz's avatar
      [PATCH] fix ns87415.c for PA-RISC Super I/O chip · 6e286d48
      Bartlomiej Zolnierkiewicz authored
      From: Matthew Wilcox <willy@debian.org>
      6e286d48
    • Bartlomiej Zolnierkiewicz's avatar
      [PATCH] remove MOD_INC_USE_COUNT from drivers/ide/ · 812f98ac
      Bartlomiej Zolnierkiewicz authored
      From: Christoph Hellwig <hch@lst.de>
      
      Instead of using the old MOD_INC_USE_COUNT and getting warnings all the
      time preventing module unload can be much easier achived by just not
      implementing a module_exit handler.
      812f98ac
    • Andrew Morton's avatar
      [PATCH] Fix qla2xxx warnings · 93734809
      Andrew Morton authored
      On ppc64:
      
      drivers/scsi/qla2xxx/qla_dbg.c: In function `qla2300_fw_dump':
      drivers/scsi/qla2xxx/qla_dbg.c:64: warning: int format, different type arg (arg 5)
      drivers/scsi/qla2xxx/qla_dbg.c: In function `qla2100_fw_dump':
      drivers/scsi/qla2xxx/qla_dbg.c:600: warning: int format, different type arg (arg 5)
      drivers/scsi/qla2xxx/qla_os.c: In function `qla2x00_proc_info':
      drivers/scsi/qla2xxx/qla_os.c:2386: warning: cast to pointer from integer of different size
      drivers/scsi/qla2xxx/qla_os.c:2386: warning: cast to pointer from integer of different size
      
      The qla_dbg() warning occurs because on ppc64 size_t is a long.  sizeof
      returns a size_t.
      
      I used %Z rather than the more modern %z, because gcc-2.95 warns about %z.
      printk supports both.
      
      For printing out dma_addr_t's, we really don't know what size they are here,
      so treating them as unsigned long long is best.
      93734809
    • Andrew Vasquez's avatar
      [PATCH] qla2xxx Kconfig fix · 2040078e
      Andrew Vasquez authored
      qla2xxx needs to be replumbed back into driver/scsi/Makefile.
      
      David Miller had already sent along a patch to me which achieves this
      by removing the _CONFIG suffix.
      2040078e
    • James Bottomley's avatar
      SCSI: undelete qlogicfc driver · 44f8ec88
      James Bottomley authored
      by user request
      44f8ec88