From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sinan Kaya Subject: Re: [PATCH v6 5/5] ACPICA: Remove PCI bits from ACPICA when CONFIG_PCI is unset Date: Wed, 12 Dec 2018 16:31:01 -0500 Message-ID: <1cf7a2ce-0e1b-c329-a891-0cc9ae030f1b@kernel.org> References: <20181212171941.7437-1-okaya@kernel.org> <20181212171941.7437-6-okaya@kernel.org> <39dc076f-1b3d-ad0c-c4bb-056ac589f361@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: "Schmauss, Erik" , "Rafael J. Wysocki" Cc: ACPI Devel Maling List , "Moore, Robert" , "Wysocki, Rafael J" , Len Brown , "devel@acpica.org" , Linux Kernel Mailing List List-Id: linux-acpi@vger.kernel.org On 12/12/2018 4:16 PM, Schmauss, Erik wrote: > > >> -----Original Message----- >> From: Rafael J. Wysocki [mailto:rafael@kernel.org] >> Sent: Wednesday, December 12, 2018 1:07 PM >> To: okaya@kernel.org; Schmauss, Erik >> Cc: ACPI Devel Maling List ; Moore, Robert >> ; Wysocki, Rafael J ; >> Len Brown ; devel@acpica.org; Linux Kernel Mailing List >> >> Subject: Re: [PATCH v6 5/5] ACPICA: Remove PCI bits from ACPICA when >> CONFIG_PCI is unset >> >> On Wed, Dec 12, 2018 at 8:34 PM Sinan Kaya wrote: >>> >>> On 12/12/2018 2:02 PM, Schmauss, Erik wrote: >>>>> ++ b/drivers/acpi/acpica/achware.h >>>>> @@ -109,8 +109,17 @@ acpi_hw_enable_runtime_gpe_block(struct >>>>> acpi_gpe_xrupt_info *gpe_xrupt_info, >>>> CONFIG_PCI is a Linux-ism. We should stay with the OS-independent >>>> nature of ACPICA. Please use ACPI_PCI_CONFIGURED and put it above >> the comment like so: >>>> >>>> #ifdef ACPI_PCI_CONFIGURED >>> >>> Thanks for the feedback. My search for ACPI_PCI_CONFIGURED returned >> nothing. >>> >>> git grep ACPI_PCI_CONFIGURED >>> >>> @Rafael, >>> >>> How do you want to handle this? >> >> I think what Eric suggested is effectively to introduce a new ACPICA symbol. >> Erik? > > Yes, that's correct and you can add something like > > #ifdef CONFIG_PCI > #define ACPI_PCI_CONFIGURED > #endif > > in include/linux/platform/aclinux.h to enable it. > OK. Let me rework this and test.