1. 13 9月, 2006 18 次提交
  2. 12 9月, 2006 16 次提交
  3. 11 9月, 2006 6 次提交
    • L
      Merge master.kernel.org:/home/rmk/linux-2.6-mmc · e004876c
      Linus Torvalds 提交于
      * master.kernel.org:/home/rmk/linux-2.6-mmc:
        [MMC] Always use a sector size of 512 bytes
        [MMC] Cleanup 385e3227
        [ARM] 3751/1: i.MX/MX1 SD/MMC use 512 bytes request for SCR read
        [MMC] Fix SD timeout calculation
        [MMC] constify mmc_host_ops
      e004876c
    • L
      Merge master.kernel.org:/home/rmk/linux-2.6-arm · 5a05e5bf
      Linus Torvalds 提交于
      * master.kernel.org:/home/rmk/linux-2.6-arm:
        [ARM] 3778/1: S3C24XX: remove changelogs from include/asm-arm/arch-s3c2410 [simtec]
        [ARM] 3783/1: S3C2412: fix IRQ_EINT0 to IRQ_EINT3 handling
        [ARM] 3779/1: S3C24XX: remove changelogs from include/asm-arm/arch-s3c2410 [left]
        [ARM] 3777/1: S3C24XX:  remove changelogs from include/asm-arm/arch-s3c2410 [regs-*.h]
        [ARM] 3776/1: S3C24XX: remove changelogs from include/asm-arm/arch-s3c2410
        [ARM] 3775/1: S3C24XX: do not add same sysdev_driver to two classes
        [ARM] 3774/1: S3C24XX: SMDK2413 has two machine IDs
        [ARM] 3773/1: Add the HWCAP_VFP bit for the ARM926 CPUs
        [ARM] 3772/1: Fix compilation error in mach-ixp4xx/nslu2*
        [ARM] 3767/1: S3C24XX: remove changelog comments from arch/arm/mach-s3c2410
        [ARM] 3766/1: Fix typo in ARM _raw_read_trylock
      5a05e5bf
    • L
      Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6 · 08a55c01
      Linus Torvalds 提交于
      * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6:
        [PATCH] Fix dm9000 release_resource
      08a55c01
    • L
      Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev · 3f2f1257
      Linus Torvalds 提交于
      * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev:
        [PATCH] ata_piix: add map 01b for ICH7M
        [libata] sata_mv: errata check buglet fix
      3f2f1257
    • A
      [PATCH] Fix 2.6.18-rc6 IDE breakage, add missing ident needed for current VIA boards · 28a2a3f5
      Alan Cox 提交于
      There are two changes here.  The first reverses the broken PCI_DEVICE
      conversion back to the old format.  The second adds a missing PCI ID so
      you can actually boot 2.6.18 on 2 month old VIA motherboards (right now
      only 2.6.18-mm works).
      
      CC'd to Jeff to check the PCI ident but its a) in several distro kernels
      and b) in 2.6.18-mm [twice ??]
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Cc: Jeff Garzik <jeff@garzik.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      28a2a3f5
    • D
      [PATCH] Fix dm9000 release_resource · 51985487
      Dirk Opfer 提交于
      dm9000_release_board calls release_resource with the platform resource
      instead of the requested resource:
      
      db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
      db->addr_req = request_mem_region(db->addr_res->start, i, pdev->name);
      
      dm9000_release_board:
      
      if (db->addr_res != NULL) {
      release_resource(db->addr_res);
      kfree(db->addr_req);
      
      With this behavior the kernel will crash on the second removal. The
      attached patch fix this problem.
      Signed-off-by: NDirk Opfer <Dirk@Opfer-Online.de>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      51985487