From: Sinan Kaya <okaya@kernel.org>
To: linux-acpi@vger.kernel.org
Cc: Sinan Kaya <okaya@kernel.org>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Hanjun Guo <hanjun.guo@linaro.org>,
Sudeep Holla <sudeep.holla@arm.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <lenb@kernel.org>,
open list <linux-kernel@vger.kernel.org>
Subject: [PATCH v10 6/6] ACPI/IORT: Stub out ACS functions when CONFIG_PCI is not set
Date: Sat, 15 Dec 2018 01:02:47 +0000 [thread overview]
Message-ID: <20181215010247.26101-7-okaya@kernel.org> (raw)
In-Reply-To: <20181215010247.26101-1-okaya@kernel.org>
Remove PCI dependent code out of iort.c when CONFIG_PCI is not defined.
Signed-off-by: Sinan Kaya <okaya@kernel.org>
---
drivers/acpi/arm64/iort.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c
index 70f4e80b9246..d0f68607efe6 100644
--- a/drivers/acpi/arm64/iort.c
+++ b/drivers/acpi/arm64/iort.c
@@ -1437,6 +1437,7 @@ static int __init iort_add_platform_device(struct acpi_iort_node *node,
static bool __init iort_enable_acs(struct acpi_iort_node *iort_node)
{
+#ifdef CONFIG_PCI
if (iort_node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
struct acpi_iort_node *parent;
struct acpi_iort_id_mapping *map;
@@ -1462,6 +1463,7 @@ static bool __init iort_enable_acs(struct acpi_iort_node *iort_node)
}
}
}
+#endif
return false;
}
--
2.19.0
WARNING: multiple messages have this Message-ID (diff)
From: Sinan Kaya <okaya@kernel.org>
To: linux-acpi@vger.kernel.org
Cc: Sinan Kaya <okaya@kernel.org>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Hanjun Guo <hanjun.guo@linaro.org>,
Sudeep Holla <sudeep.holla@arm.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <lenb@kernel.org>,
linux-kernel@vger.kernel.org (open list)
Subject: [PATCH v10 6/6] ACPI/IORT: Stub out ACS functions when CONFIG_PCI is not set
Date: Sat, 15 Dec 2018 01:02:47 +0000 [thread overview]
Message-ID: <20181215010247.26101-7-okaya@kernel.org> (raw)
In-Reply-To: <20181215010247.26101-1-okaya@kernel.org>
Remove PCI dependent code out of iort.c when CONFIG_PCI is not defined.
Signed-off-by: Sinan Kaya <okaya@kernel.org>
---
drivers/acpi/arm64/iort.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c
index 70f4e80b9246..d0f68607efe6 100644
--- a/drivers/acpi/arm64/iort.c
+++ b/drivers/acpi/arm64/iort.c
@@ -1437,6 +1437,7 @@ static int __init iort_add_platform_device(struct acpi_iort_node *node,
static bool __init iort_enable_acs(struct acpi_iort_node *iort_node)
{
+#ifdef CONFIG_PCI
if (iort_node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) {
struct acpi_iort_node *parent;
struct acpi_iort_id_mapping *map;
@@ -1462,6 +1463,7 @@ static bool __init iort_enable_acs(struct acpi_iort_node *iort_node)
}
}
}
+#endif
return false;
}
--
2.19.0
next prev parent reply other threads:[~2018-12-15 1:02 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20181215010247.26101-1-okaya@kernel.org>
2018-12-15 1:02 ` [PATCH v10 1/6] ACPI: Allow CONFIG_PCI to be unset for reboot Sinan Kaya
2018-12-15 1:02 ` Sinan Kaya
2018-12-15 1:02 ` [PATCH v10 2/6] ACPI / OSL: Stub out acpi_os_(read/write)_pci_configurations() Sinan Kaya
2018-12-15 1:02 ` Sinan Kaya
2018-12-15 1:02 ` [PATCH v10 3/6] PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set Sinan Kaya
2018-12-15 1:02 ` Sinan Kaya
2018-12-17 17:00 ` Ingo Molnar
2018-12-17 17:00 ` Ingo Molnar
2018-12-18 1:57 ` Sinan Kaya
2018-12-18 1:57 ` Sinan Kaya
2018-12-15 1:02 ` [PATCH v10 4/6] ACPICA: Remove PCI bits from ACPICA when CONFIG_PCI is unset Sinan Kaya
2018-12-15 1:02 ` Sinan Kaya
2018-12-15 1:02 ` [PATCH v10 5/6] arm64: select ACPI PCI code only both features are enabled Sinan Kaya
2018-12-15 1:02 ` Sinan Kaya
2018-12-15 1:02 ` Sinan Kaya
2018-12-17 10:04 ` Rafael J. Wysocki
2018-12-17 10:04 ` Rafael J. Wysocki
2018-12-17 15:52 ` Catalin Marinas
2018-12-17 15:52 ` Catalin Marinas
2018-12-15 1:02 ` Sinan Kaya [this message]
2018-12-15 1:02 ` [PATCH v10 6/6] ACPI/IORT: Stub out ACS functions when CONFIG_PCI is not set Sinan Kaya
2018-12-17 10:04 ` Rafael J. Wysocki
2018-12-17 12:55 ` Lorenzo Pieralisi
2018-12-18 2:14 ` Hanjun Guo
2018-12-18 2:14 ` Hanjun Guo
2018-12-18 2:46 ` Sinan Kaya
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=20181215010247.26101-7-okaya@kernel.org \
--to=okaya@kernel.org \
--cc=hanjun.guo@linaro.org \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=rjw@rjwysocki.net \
--cc=sudeep.holla@arm.com \
/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.