linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: exynos: remove the MMC_CAP2_BROKEN_VOLTAGE
@ 2012-09-20  8:52 Jaehoon Chung
  2012-09-20 23:36 ` Kukjin Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Jaehoon Chung @ 2012-09-20  8:52 UTC (permalink / raw)
  To: linux-samsung-soc
  Cc: linux-mmc, 'kgene kim', Chris Ball, Kyungmin Park,
	Tomasz Figa, Adrian Hunter

This patch is dependency with Chris's patch.
"[PATCH] mmc: core: Replace MMC_CAP2_BROKEN_VOLTAGE with test for fixed regulator"
http://git.kernel.org/?p=linux/kernel/git/cjb/mmc.git;a=commit;h=421fc8e70079b8b9e473a55a6267302695641dcc

After applied that patch, it needs not to set MMC_CAP2_BROKEN_VOLTAGE.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c           |    1 -
 arch/arm/mach-exynos/mach-universal_c210.c |    1 -
 arch/arm/mach-s5pv210/mach-goni.c          |    1 -
 3 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index 90d8daa..6e0b0fa 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -113,7 +113,6 @@ static struct s3c_sdhci_platdata nuri_hsmmc0_data __initdata = {
 	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
 				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
 				MMC_CAP_ERASE),
-	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 };
 
diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-exynos/mach-universal_c210.c
index 8139cd2..865be0a 100644
--- a/arch/arm/mach-exynos/mach-universal_c210.c
+++ b/arch/arm/mach-exynos/mach-universal_c210.c
@@ -754,7 +754,6 @@ static struct s3c_sdhci_platdata universal_hsmmc0_data __initdata = {
 	.max_width		= 8,
 	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
 				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
-	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 };
 
diff --git a/arch/arm/mach-s5pv210/mach-goni.c b/arch/arm/mach-s5pv210/mach-goni.c
index c552581..239e896 100644
--- a/arch/arm/mach-s5pv210/mach-goni.c
+++ b/arch/arm/mach-s5pv210/mach-goni.c
@@ -774,7 +774,6 @@ static void __init goni_pmic_init(void)
 /* MoviNAND */
 static struct s3c_sdhci_platdata goni_hsmmc0_data __initdata = {
 	.max_width		= 4,
-	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 };
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] ARM: exynos: remove the MMC_CAP2_BROKEN_VOLTAGE
  2012-09-20  8:52 [PATCH] ARM: exynos: remove the MMC_CAP2_BROKEN_VOLTAGE Jaehoon Chung
@ 2012-09-20 23:36 ` Kukjin Kim
  2012-09-21  1:19   ` Jaehoon Chung
  0 siblings, 1 reply; 3+ messages in thread
From: Kukjin Kim @ 2012-09-20 23:36 UTC (permalink / raw)
  To: 'Jaehoon Chung', linux-samsung-soc
  Cc: 'linux-mmc', 'Chris Ball',
	'Kyungmin Park', 'Tomasz Figa',
	'Adrian Hunter'

Jaehoon Chung wrote:
> 
> This patch is dependency with Chris's patch.
> "[PATCH] mmc: core: Replace MMC_CAP2_BROKEN_VOLTAGE with test for fixed
> regulator"
> http://git.kernel.org/?p=linux/kernel/git/cjb/mmc.git;a=commit;h=421fc8e70
> 079b8b9e473a55a6267302695641dcc
> 
> After applied that patch, it needs not to set MMC_CAP2_BROKEN_VOLTAGE.
> 
Yeah, we don't need more this. This will be queued into -late branch for
v3.7 or can be queued into cleanup for next merge window because this is not
critical.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.


> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
>  arch/arm/mach-exynos/mach-nuri.c           |    1 -
>  arch/arm/mach-exynos/mach-universal_c210.c |    1 -
>  arch/arm/mach-s5pv210/mach-goni.c          |    1 -
>  3 files changed, 0 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-
> nuri.c
> index 90d8daa..6e0b0fa 100644
> --- a/arch/arm/mach-exynos/mach-nuri.c
> +++ b/arch/arm/mach-exynos/mach-nuri.c
> @@ -113,7 +113,6 @@ static struct s3c_sdhci_platdata nuri_hsmmc0_data
> __initdata = {
>  	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
>  				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED
|
>  				MMC_CAP_ERASE),
> -	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
>  	.cd_type		= S3C_SDHCI_CD_PERMANENT,
>  };
> 
> diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-
> exynos/mach-universal_c210.c
> index 8139cd2..865be0a 100644
> --- a/arch/arm/mach-exynos/mach-universal_c210.c
> +++ b/arch/arm/mach-exynos/mach-universal_c210.c
> @@ -754,7 +754,6 @@ static struct s3c_sdhci_platdata universal_hsmmc0_data
> __initdata = {
>  	.max_width		= 8,
>  	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
>  				MMC_CAP_MMC_HIGHSPEED |
MMC_CAP_SD_HIGHSPEED),
> -	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
>  	.cd_type		= S3C_SDHCI_CD_PERMANENT,
>  };
> 
> diff --git a/arch/arm/mach-s5pv210/mach-goni.c b/arch/arm/mach-
> s5pv210/mach-goni.c
> index c552581..239e896 100644
> --- a/arch/arm/mach-s5pv210/mach-goni.c
> +++ b/arch/arm/mach-s5pv210/mach-goni.c
> @@ -774,7 +774,6 @@ static void __init goni_pmic_init(void)
>  /* MoviNAND */
>  static struct s3c_sdhci_platdata goni_hsmmc0_data __initdata = {
>  	.max_width		= 4,
> -	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
>  	.cd_type		= S3C_SDHCI_CD_PERMANENT,
>  };
> 
> --
> 1.7.4.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: exynos: remove the MMC_CAP2_BROKEN_VOLTAGE
  2012-09-20 23:36 ` Kukjin Kim
@ 2012-09-21  1:19   ` Jaehoon Chung
  0 siblings, 0 replies; 3+ messages in thread
From: Jaehoon Chung @ 2012-09-21  1:19 UTC (permalink / raw)
  To: Kukjin Kim
  Cc: 'Jaehoon Chung', linux-samsung-soc, 'linux-mmc',
	'Chris Ball', 'Kyungmin Park',
	'Tomasz Figa', 'Adrian Hunter'

Thanks Kukjin.

Best Regards,
Jaehoon Chung

On 09/21/2012 08:36 AM, Kukjin Kim wrote:
> Jaehoon Chung wrote:
>>
>> This patch is dependency with Chris's patch.
>> "[PATCH] mmc: core: Replace MMC_CAP2_BROKEN_VOLTAGE with test for fixed
>> regulator"
>> http://git.kernel.org/?p=linux/kernel/git/cjb/mmc.git;a=commit;h=421fc8e70
>> 079b8b9e473a55a6267302695641dcc
>>
>> After applied that patch, it needs not to set MMC_CAP2_BROKEN_VOLTAGE.
>>
> Yeah, we don't need more this. This will be queued into -late branch for
> v3.7 or can be queued into cleanup for next merge window because this is not
> critical.
> 
> Thanks.
> 
> Best regards,
> Kgene.
> --
> Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
> SW Solution Development Team, Samsung Electronics Co., Ltd.
> 
> 
>> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>  arch/arm/mach-exynos/mach-nuri.c           |    1 -
>>  arch/arm/mach-exynos/mach-universal_c210.c |    1 -
>>  arch/arm/mach-s5pv210/mach-goni.c          |    1 -
>>  3 files changed, 0 insertions(+), 3 deletions(-)
>>
>> diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-
>> nuri.c
>> index 90d8daa..6e0b0fa 100644
>> --- a/arch/arm/mach-exynos/mach-nuri.c
>> +++ b/arch/arm/mach-exynos/mach-nuri.c
>> @@ -113,7 +113,6 @@ static struct s3c_sdhci_platdata nuri_hsmmc0_data
>> __initdata = {
>>  	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
>>  				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED
> |
>>  				MMC_CAP_ERASE),
>> -	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
>>  	.cd_type		= S3C_SDHCI_CD_PERMANENT,
>>  };
>>
>> diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-
>> exynos/mach-universal_c210.c
>> index 8139cd2..865be0a 100644
>> --- a/arch/arm/mach-exynos/mach-universal_c210.c
>> +++ b/arch/arm/mach-exynos/mach-universal_c210.c
>> @@ -754,7 +754,6 @@ static struct s3c_sdhci_platdata universal_hsmmc0_data
>> __initdata = {
>>  	.max_width		= 8,
>>  	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
>>  				MMC_CAP_MMC_HIGHSPEED |
> MMC_CAP_SD_HIGHSPEED),
>> -	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
>>  	.cd_type		= S3C_SDHCI_CD_PERMANENT,
>>  };
>>
>> diff --git a/arch/arm/mach-s5pv210/mach-goni.c b/arch/arm/mach-
>> s5pv210/mach-goni.c
>> index c552581..239e896 100644
>> --- a/arch/arm/mach-s5pv210/mach-goni.c
>> +++ b/arch/arm/mach-s5pv210/mach-goni.c
>> @@ -774,7 +774,6 @@ static void __init goni_pmic_init(void)
>>  /* MoviNAND */
>>  static struct s3c_sdhci_platdata goni_hsmmc0_data __initdata = {
>>  	.max_width		= 4,
>> -	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
>>  	.cd_type		= S3C_SDHCI_CD_PERMANENT,
>>  };
>>
>> --
>> 1.7.4.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-09-21  1:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-20  8:52 [PATCH] ARM: exynos: remove the MMC_CAP2_BROKEN_VOLTAGE Jaehoon Chung
2012-09-20 23:36 ` Kukjin Kim
2012-09-21  1:19   ` Jaehoon Chung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).