diff mbox series

i2c: fix ACPI_I2C_OPREGION dependency

Message ID 1511370357-17184-1-git-send-email-eric.auger@redhat.com
State Superseded
Headers show
Series i2c: fix ACPI_I2C_OPREGION dependency | expand

Commit Message

Eric Auger Nov. 22, 2017, 5:05 p.m. UTC
If CONFIG_I2C=m we fail getting ACPI_I2C_OPREGION set. Let's
make ACPI_I2C_OPREGION depend on I2C.

Signed-off-by: Eric Auger <eric.auger@redhat.com>
---
 drivers/i2c/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sinan Kaya Jan. 2, 2018, 6:07 p.m. UTC | #1
+linux-acpi

On 11/22/2017 12:05 PM, Eric Auger wrote:
> If CONFIG_I2C=m we fail getting ACPI_I2C_OPREGION set. Let's
> make ACPI_I2C_OPREGION depend on I2C.
> 
> Signed-off-by: Eric Auger <eric.auger@redhat.com>
> ---
>  drivers/i2c/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
> index efc3354..5951e9d 100644
> --- a/drivers/i2c/Kconfig
> +++ b/drivers/i2c/Kconfig
> @@ -26,7 +26,7 @@ config I2C
>  
>  config ACPI_I2C_OPREGION
>  	bool "ACPI I2C Operation region support"
> -	depends on I2C=y && ACPI
> +	depends on I2C && ACPI
>  	default y
>  	help
>  	  Say Y here if you want to enable ACPI I2C operation region support.
> 

Anybody picking this up?
Randy Dunlap Jan. 2, 2018, 6:10 p.m. UTC | #2
On 01/02/2018 10:07 AM, Sinan Kaya wrote:
> +linux-acpi
> 
> On 11/22/2017 12:05 PM, Eric Auger wrote:
>> If CONFIG_I2C=m we fail getting ACPI_I2C_OPREGION set. Let's
>> make ACPI_I2C_OPREGION depend on I2C.
>>
>> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>> ---
>>  drivers/i2c/Kconfig | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
>> index efc3354..5951e9d 100644
>> --- a/drivers/i2c/Kconfig
>> +++ b/drivers/i2c/Kconfig
>> @@ -26,7 +26,7 @@ config I2C
>>  
>>  config ACPI_I2C_OPREGION
>>  	bool "ACPI I2C Operation region support"
>> -	depends on I2C=y && ACPI
>> +	depends on I2C && ACPI
>>  	default y
>>  	help
>>  	  Say Y here if you want to enable ACPI I2C operation region support.
>>
> 
> Anybody picking this up?

Well.  It looks to me like the patch is reversed or the patch description
needs some improvement.  Or I just don't understand it.
Sinan Kaya Jan. 2, 2018, 6:19 p.m. UTC | #3
On 1/2/2018 1:10 PM, Randy Dunlap wrote:
>>>  config ACPI_I2C_OPREGION
>>>  	bool "ACPI I2C Operation region support"
>>> -	depends on I2C=y && ACPI
>>> +	depends on I2C && ACPI
>>>  	default y
>>>  	help
>>>  	  Say Y here if you want to enable ACPI I2C operation region support.
>>>
>> Anybody picking this up?
> Well.  It looks to me like the patch is reversed or the patch description
> needs some improvement.  Or I just don't understand it.

I'll let Eric improve the description. 

Issue is that if you compile I2C as a module, ACPI_I2C_OPREGION doesn't get selected.
Therefore, any ACPI opregion calls targeting I2C fail with no opregion found.

The goal is to select ACPI_I2C_OPREGION independent of the I2C module type selection.
Sinan Kaya Jan. 3, 2018, 1:39 p.m. UTC | #4
On 1/2/2018 1:19 PM, Sinan Kaya wrote:
> On 1/2/2018 1:10 PM, Randy Dunlap wrote:
>>>>  config ACPI_I2C_OPREGION
>>>>  	bool "ACPI I2C Operation region support"
>>>> -	depends on I2C=y && ACPI
>>>> +	depends on I2C && ACPI
>>>>  	default y
>>>>  	help
>>>>  	  Say Y here if you want to enable ACPI I2C operation region support.
>>>>
>>> Anybody picking this up?
>> Well.  It looks to me like the patch is reversed or the patch description
>> needs some improvement.  Or I just don't understand it.
> 
> I'll let Eric improve the description. 
> 
> Issue is that if you compile I2C as a module, ACPI_I2C_OPREGION doesn't get selected.
> Therefore, any ACPI opregion calls targeting I2C fail with no opregion found.
> 
> The goal is to select ACPI_I2C_OPREGION independent of the I2C module type selection.
> 

I hope I was able to explain it. =y above is the problem. This config option will only
be selected if module is built-in not for m case.
Eric Auger Jan. 3, 2018, 2:03 p.m. UTC | #5
Hi Sinan,
On 03/01/18 14:39, Sinan Kaya wrote:
> On 1/2/2018 1:19 PM, Sinan Kaya wrote:
>> On 1/2/2018 1:10 PM, Randy Dunlap wrote:
>>>>>  config ACPI_I2C_OPREGION
>>>>>  	bool "ACPI I2C Operation region support"
>>>>> -	depends on I2C=y && ACPI
>>>>> +	depends on I2C && ACPI
>>>>>  	default y
>>>>>  	help
>>>>>  	  Say Y here if you want to enable ACPI I2C operation region support.
>>>>>
>>>> Anybody picking this up?
>>> Well.  It looks to me like the patch is reversed or the patch description
>>> needs some improvement.  Or I just don't understand it.
>>
>> I'll let Eric improve the description. 
>>
>> Issue is that if you compile I2C as a module, ACPI_I2C_OPREGION doesn't get selected.
>> Therefore, any ACPI opregion calls targeting I2C fail with no opregion found.
>>
>> The goal is to select ACPI_I2C_OPREGION independent of the I2C module type selection.
>>
> 
> I hope I was able to explain it. =y above is the problem. This config option will only
> be selected if module is built-in not for m case.

Thank you for your input. I just sent a v2 with reworded commit message.
Hope this makes more sense.

Thanks

Eric
>
diff mbox series

Patch

diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
index efc3354..5951e9d 100644
--- a/drivers/i2c/Kconfig
+++ b/drivers/i2c/Kconfig
@@ -26,7 +26,7 @@  config I2C
 
 config ACPI_I2C_OPREGION
 	bool "ACPI I2C Operation region support"
-	depends on I2C=y && ACPI
+	depends on I2C && ACPI
 	default y
 	help
 	  Say Y here if you want to enable ACPI I2C operation region support.