All of lore.kernel.org
 help / color / mirror / Atom feed
From: Raphael Zimmerer <killekulla@rdrz.de>
To: linux-kernel@vger.kernel.org
Cc: greg@kroah.com
Subject: [PATCH] [pci]: fix PCI access mode dependences in arch/i386/Kconfig
Date: Fri, 30 Jul 2004 12:39:41 +0200	[thread overview]
Message-ID: <20040730103941.GB28101@rdrz.de> (raw)

[-- Attachment #1: Type: text/plain, Size: 980 bytes --]

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

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

                 reply	other threads:[~2004-07-30 10:39 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040730103941.GB28101@rdrz.de \
    --to=killekulla@rdrz.de \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.