[PATCH] [pci]: fix PCI access mode dependences in arch/i386/Kconfig

From: Raphael Zimmerer (killekulla_at_rdrz.de)
Date: 07/30/04

  • Next message: Jan Blunck: "Re: [PATCH] ext2_readdir() filp->f_pos fix"
    Date:	Fri, 30 Jul 2004 12:39:41 +0200
    To: linux-kernel@vger.kernel.org
    
    
    

    PCI acces mode Configuration

    Problem:
    While all ACPI stuff is deselected, and PCI access mode is set to
    "Any", CONFIG_ACPI_BOOT is going to be set because of CONFIG_PCI_MMCONFIG.

    Solution:
    If CONFIG_ACPI_BOOT is not allready set by other stuff, setting PCI access
    mode to "Any" shouldn't set CONFIG_PCI_MMCONFIG. Anyhow, setting PCI access
    mode to "MMConfig" should select CONFIG_ACPI_BOOT.

    Regards,
    Raphael

    Signed-off-by: Raphael Zimmerer <killekulla@rdrz.de>
     Kconfig | 2 +-
     1 files changed, 1 insertion(+), 1 deletion(-)

    --- linux-2.6.8-rc2/arch/i386/Kconfig 2004-07-27 13:13:16.000000000 +0200
    +++ linux-2.6.8-rc2-[uart]/arch/i386/Kconfig 2004-07-29 12:47:07.000000000 +0200
    @@ -1105,7 +1105,7 @@
     
     config PCI_MMCONFIG
             bool
    - depends on PCI && (PCI_GOMMCONFIG || PCI_GOANY)
    + depends on PCI && (PCI_GOMMCONFIG || (PCI_GOANY && ACPI_BOOT))
             select ACPI_BOOT
             default y

    
    

    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/



  • Next message: Jan Blunck: "Re: [PATCH] ext2_readdir() filp->f_pos fix"

    Relevant Pages