[linux-yocto] [PATCH 11/13] CONFIG_I2C_I801: set option to yes in intel-core* bsps

2016-02-04 Thread California Sullivan
Without EXPERT, we hit a select on I2C_I801, forcing it to yes and
causing a warning. Set I2C_I801 to yes, and if a bsp wants to build it
as a module, it can be done through an extended ktype bsp.

Signed-off-by: California Sullivan 
---
 bsp/haswell-wc/haswell-wc.cfg  | 2 +-
 bsp/mohonpeak/mohonpeak.cfg| 2 +-
 features/soc/baytrail/baytrail.cfg | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bsp/haswell-wc/haswell-wc.cfg b/bsp/haswell-wc/haswell-wc.cfg
index 0402847..f2136a8 100644
--- a/bsp/haswell-wc/haswell-wc.cfg
+++ b/bsp/haswell-wc/haswell-wc.cfg
@@ -16,6 +16,6 @@ CONFIG_PM=y
 # Platform specific support for the box - LPC, SMBus
 CONFIG_LPC_ICH=y
 CONFIG_I2C=y
-CONFIG_I2C_I801=m
+CONFIG_I2C_I801=y
 CONFIG_I2C_CHARDEV=y
 
diff --git a/bsp/mohonpeak/mohonpeak.cfg b/bsp/mohonpeak/mohonpeak.cfg
index 87e4d3e..6dd26f4 100644
--- a/bsp/mohonpeak/mohonpeak.cfg
+++ b/bsp/mohonpeak/mohonpeak.cfg
@@ -14,7 +14,7 @@ CONFIG_CHR_DEV_SG=y
 
 # SMBus Support
 CONFIG_I2C=y
-CONFIG_I2C_I801=m
+CONFIG_I2C_I801=y
 CONFIG_I2C_ISMT=m
 CONFIG_I2C_CHARDEV=y
 
diff --git a/features/soc/baytrail/baytrail.cfg 
b/features/soc/baytrail/baytrail.cfg
index f6dbb9e..0a5e6c1 100644
--- a/features/soc/baytrail/baytrail.cfg
+++ b/features/soc/baytrail/baytrail.cfg
@@ -29,7 +29,7 @@ CONFIG_I2C_DESIGNWARE_PCI=m
 CONFIG_I2C_DESIGNWARE_PLATFORM=m
 
 # SMBus Support
-CONFIG_I2C_I801=m
+CONFIG_I2C_I801=y
 
 CONFIG_SPI_PXA2XX=m
 
-- 
2.5.0

-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 11/13] CONFIG_I2C_I801: set option to yes in intel-core* bsps

2016-02-07 Thread Paul Gortmaker
[[linux-yocto] [PATCH 11/13] CONFIG_I2C_I801: set option to yes in intel-core* 
bsps] On 04/02/2016 (Thu 16:25) California Sullivan wrote:

> Without EXPERT, we hit a select on I2C_I801, forcing it to yes and
> causing a warning. Set I2C_I801 to yes, and if a bsp wants to build it
> as a module, it can be done through an extended ktype bsp.

What exactly was the warning?

P.
--

> 
> Signed-off-by: California Sullivan 
> ---
>  bsp/haswell-wc/haswell-wc.cfg  | 2 +-
>  bsp/mohonpeak/mohonpeak.cfg| 2 +-
>  features/soc/baytrail/baytrail.cfg | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/bsp/haswell-wc/haswell-wc.cfg b/bsp/haswell-wc/haswell-wc.cfg
> index 0402847..f2136a8 100644
> --- a/bsp/haswell-wc/haswell-wc.cfg
> +++ b/bsp/haswell-wc/haswell-wc.cfg
> @@ -16,6 +16,6 @@ CONFIG_PM=y
>  # Platform specific support for the box - LPC, SMBus
>  CONFIG_LPC_ICH=y
>  CONFIG_I2C=y
> -CONFIG_I2C_I801=m
> +CONFIG_I2C_I801=y
>  CONFIG_I2C_CHARDEV=y
>  
> diff --git a/bsp/mohonpeak/mohonpeak.cfg b/bsp/mohonpeak/mohonpeak.cfg
> index 87e4d3e..6dd26f4 100644
> --- a/bsp/mohonpeak/mohonpeak.cfg
> +++ b/bsp/mohonpeak/mohonpeak.cfg
> @@ -14,7 +14,7 @@ CONFIG_CHR_DEV_SG=y
>  
>  # SMBus Support
>  CONFIG_I2C=y
> -CONFIG_I2C_I801=m
> +CONFIG_I2C_I801=y
>  CONFIG_I2C_ISMT=m
>  CONFIG_I2C_CHARDEV=y
>  
> diff --git a/features/soc/baytrail/baytrail.cfg 
> b/features/soc/baytrail/baytrail.cfg
> index f6dbb9e..0a5e6c1 100644
> --- a/features/soc/baytrail/baytrail.cfg
> +++ b/features/soc/baytrail/baytrail.cfg
> @@ -29,7 +29,7 @@ CONFIG_I2C_DESIGNWARE_PCI=m
>  CONFIG_I2C_DESIGNWARE_PLATFORM=m
>  
>  # SMBus Support
> -CONFIG_I2C_I801=m
> +CONFIG_I2C_I801=y
>  
>  CONFIG_SPI_PXA2XX=m
>  
> -- 
> 2.5.0
> 
> -- 
> ___
> linux-yocto mailing list
> linux-yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/linux-yocto
-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto


Re: [linux-yocto] [PATCH 11/13] CONFIG_I2C_I801: set option to yes in intel-core* bsps

2016-02-08 Thread Sullivan, California L
On 02/07/2016 03:33 PM, Paul Gortmaker wrote:
> [[linux-yocto] [PATCH 11/13] CONFIG_I2C_I801: set option to yes in 
> intel-core* bsps] On 04/02/2016 (Thu 16:25) California Sullivan wrote:
>
>> Without EXPERT, we hit a select on I2C_I801, forcing it to yes and
>> causing a warning. Set I2C_I801 to yes, and if a bsp wants to build it
>> as a module, it can be done through an extended ktype bsp.
> What exactly was the warning?
>
> P.
> --
>
WARNING: [kernel config]: specified values did not make it into the
kernel's final configuration:

Value requested for CONFIG_I2C_I801 not in final ".config"
Requested value: "CONFIG_I2C_I801=m"
Actual value set: "CONFIG_I2C_I801=y"

---
Cal
>> Signed-off-by: California Sullivan 
>> ---
>>  bsp/haswell-wc/haswell-wc.cfg  | 2 +-
>>  bsp/mohonpeak/mohonpeak.cfg| 2 +-
>>  features/soc/baytrail/baytrail.cfg | 2 +-
>>  3 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/bsp/haswell-wc/haswell-wc.cfg b/bsp/haswell-wc/haswell-wc.cfg
>> index 0402847..f2136a8 100644
>> --- a/bsp/haswell-wc/haswell-wc.cfg
>> +++ b/bsp/haswell-wc/haswell-wc.cfg
>> @@ -16,6 +16,6 @@ CONFIG_PM=y
>>  # Platform specific support for the box - LPC, SMBus
>>  CONFIG_LPC_ICH=y
>>  CONFIG_I2C=y
>> -CONFIG_I2C_I801=m
>> +CONFIG_I2C_I801=y
>>  CONFIG_I2C_CHARDEV=y
>>  
>> diff --git a/bsp/mohonpeak/mohonpeak.cfg b/bsp/mohonpeak/mohonpeak.cfg
>> index 87e4d3e..6dd26f4 100644
>> --- a/bsp/mohonpeak/mohonpeak.cfg
>> +++ b/bsp/mohonpeak/mohonpeak.cfg
>> @@ -14,7 +14,7 @@ CONFIG_CHR_DEV_SG=y
>>  
>>  # SMBus Support
>>  CONFIG_I2C=y
>> -CONFIG_I2C_I801=m
>> +CONFIG_I2C_I801=y
>>  CONFIG_I2C_ISMT=m
>>  CONFIG_I2C_CHARDEV=y
>>  
>> diff --git a/features/soc/baytrail/baytrail.cfg 
>> b/features/soc/baytrail/baytrail.cfg
>> index f6dbb9e..0a5e6c1 100644
>> --- a/features/soc/baytrail/baytrail.cfg
>> +++ b/features/soc/baytrail/baytrail.cfg
>> @@ -29,7 +29,7 @@ CONFIG_I2C_DESIGNWARE_PCI=m
>>  CONFIG_I2C_DESIGNWARE_PLATFORM=m
>>  
>>  # SMBus Support
>> -CONFIG_I2C_I801=m
>> +CONFIG_I2C_I801=y
>>  
>>  CONFIG_SPI_PXA2XX=m
>>  
>> -- 
>> 2.5.0
>>
>> -- 
>> ___
>> linux-yocto mailing list
>> linux-yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/linux-yocto

-- 
___
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto