2021-02-03 00:50:28

by Sakari Ailus

[permalink] [raw]
Subject: [PATCH 1/1] ipu3-cio2: Build bridge only if ACPI is enabled

ipu3-cio2-bridge uses several features of the ACPI framework that have no
meaningful replacement when ACPI is disabled. Instead of adding #ifdefs to
the affected places, only build the bridge code if CONFIG_ACPI is enabled.

Fixes: 803abec64ef9 ("media: ipu3-cio2: Add cio2-bridge to ipu3-cio2 driver")
Signed-off-by: Sakari Ailus <[email protected]>
---
Hi Randy,

Thanks for reporting this.

This patch should address the problem.

drivers/media/pci/intel/ipu3/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/intel/ipu3/Kconfig b/drivers/media/pci/intel/ipu3/Kconfig
index 24f4e79fe0cb..dce8274c81e6 100644
--- a/drivers/media/pci/intel/ipu3/Kconfig
+++ b/drivers/media/pci/intel/ipu3/Kconfig
@@ -20,7 +20,7 @@ config VIDEO_IPU3_CIO2

config CIO2_BRIDGE
bool "IPU3 CIO2 Sensors Bridge"
- depends on VIDEO_IPU3_CIO2
+ depends on VIDEO_IPU3_CIO2 && ACPI
help
This extension provides an API for the ipu3-cio2 driver to create
connections to cameras that are hidden in the SSDB buffer in ACPI.
--
2.29.2


2021-02-03 00:50:34

by Randy Dunlap

[permalink] [raw]
Subject: Re: [PATCH 1/1] ipu3-cio2: Build bridge only if ACPI is enabled

On 2/2/21 12:14 PM, Sakari Ailus wrote:
> ipu3-cio2-bridge uses several features of the ACPI framework that have no
> meaningful replacement when ACPI is disabled. Instead of adding #ifdefs to
> the affected places, only build the bridge code if CONFIG_ACPI is enabled.
>
> Fixes: 803abec64ef9 ("media: ipu3-cio2: Add cio2-bridge to ipu3-cio2 driver")
> Signed-off-by: Sakari Ailus <[email protected]>

Reported-by: Randy Dunlap <[email protected]>
Acked-by: Randy Dunlap <[email protected]> # build-tested

Thanks.

> ---
> Hi Randy,
>
> Thanks for reporting this.
>
> This patch should address the problem.
>
> drivers/media/pci/intel/ipu3/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/pci/intel/ipu3/Kconfig b/drivers/media/pci/intel/ipu3/Kconfig
> index 24f4e79fe0cb..dce8274c81e6 100644
> --- a/drivers/media/pci/intel/ipu3/Kconfig
> +++ b/drivers/media/pci/intel/ipu3/Kconfig
> @@ -20,7 +20,7 @@ config VIDEO_IPU3_CIO2
>
> config CIO2_BRIDGE
> bool "IPU3 CIO2 Sensors Bridge"
> - depends on VIDEO_IPU3_CIO2
> + depends on VIDEO_IPU3_CIO2 && ACPI
> help
> This extension provides an API for the ipu3-cio2 driver to create
> connections to cameras that are hidden in the SSDB buffer in ACPI.
>


--
~Randy

2021-02-03 00:50:38

by Sakari Ailus

[permalink] [raw]
Subject: Re: [PATCH 1/1] ipu3-cio2: Build bridge only if ACPI is enabled

On Tue, Feb 02, 2021 at 12:24:54PM -0800, Randy Dunlap wrote:
> On 2/2/21 12:14 PM, Sakari Ailus wrote:
> > ipu3-cio2-bridge uses several features of the ACPI framework that have no
> > meaningful replacement when ACPI is disabled. Instead of adding #ifdefs to
> > the affected places, only build the bridge code if CONFIG_ACPI is enabled.
> >
> > Fixes: 803abec64ef9 ("media: ipu3-cio2: Add cio2-bridge to ipu3-cio2 driver")
> > Signed-off-by: Sakari Ailus <[email protected]>
>
> Reported-by: Randy Dunlap <[email protected]>
> Acked-by: Randy Dunlap <[email protected]> # build-tested

Thanks! I'll include this in a pull request to Mauro shortly.

--
Sakari Ailus

2021-02-03 00:54:48

by Daniel Scally

[permalink] [raw]
Subject: Re: [PATCH 1/1] ipu3-cio2: Build bridge only if ACPI is enabled

On 02/02/2021 20:30, Sakari Ailus wrote:
> On Tue, Feb 02, 2021 at 12:24:54PM -0800, Randy Dunlap wrote:
>> On 2/2/21 12:14 PM, Sakari Ailus wrote:
>>> ipu3-cio2-bridge uses several features of the ACPI framework that have no
>>> meaningful replacement when ACPI is disabled. Instead of adding #ifdefs to
>>> the affected places, only build the bridge code if CONFIG_ACPI is enabled.
>>>
>>> Fixes: 803abec64ef9 ("media: ipu3-cio2: Add cio2-bridge to ipu3-cio2 driver")
>>> Signed-off-by: Sakari Ailus <[email protected]>
>> Reported-by: Randy Dunlap <[email protected]>
>> Acked-by: Randy Dunlap <[email protected]> # build-tested
> Thanks! I'll include this in a pull request to Mauro shortly.
>
Ah - thank you both; sorry to have missed that.

2021-02-03 00:56:28

by Sakari Ailus

[permalink] [raw]
Subject: Re: [PATCH 1/1] ipu3-cio2: Build bridge only if ACPI is enabled

On Tue, Feb 02, 2021 at 09:37:47PM +0000, Daniel Scally wrote:
> On 02/02/2021 20:30, Sakari Ailus wrote:
> > On Tue, Feb 02, 2021 at 12:24:54PM -0800, Randy Dunlap wrote:
> >> On 2/2/21 12:14 PM, Sakari Ailus wrote:
> >>> ipu3-cio2-bridge uses several features of the ACPI framework that have no
> >>> meaningful replacement when ACPI is disabled. Instead of adding #ifdefs to
> >>> the affected places, only build the bridge code if CONFIG_ACPI is enabled.
> >>>
> >>> Fixes: 803abec64ef9 ("media: ipu3-cio2: Add cio2-bridge to ipu3-cio2 driver")
> >>> Signed-off-by: Sakari Ailus <[email protected]>
> >> Reported-by: Randy Dunlap <[email protected]>
> >> Acked-by: Randy Dunlap <[email protected]> # build-tested
> > Thanks! I'll include this in a pull request to Mauro shortly.
> >
> Ah - thank you both; sorry to have missed that.

No worries; this was missed in review, too. There are just combinations you
don't always end up testing before merging the patches.

--
Regards,

Sakari Ailus