Re: [PATCH 1/3] mmc: sdhci-bcm-kona: Remove unneeded version.h inclusion

2013-07-19 Thread Christian Daudt
On 13-07-07 11:11 PM, Sachin Kamat wrote: version.h header inclusion is not necessary as detected by versioncheck. Signed-off-by: Sachin Kamat --- drivers/mmc/host/sdhci-bcm-kona.c |1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-bcm-kona.c b/drivers/mmc/host/sdh

Re: [PATCH 3/3] mmc: sdhci-bcm-kona: Staticize sdhci_bcm_kona_card_event

2013-07-19 Thread Christian Daudt
On 13-07-07 11:11 PM, Sachin Kamat wrote: sdhci_bcm_kona_card_event is referenced only in this file. Make it static. Signed-off-by: Sachin Kamat --- drivers/mmc/host/sdhci-bcm-kona.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-bcm-kona.c b/d

Re: [PATCH 2/3] mmc: sdhci-bcm-kona: Remove redundant use of_match_ptr

2013-07-19 Thread Christian Daudt
On 13-07-07 11:11 PM, Sachin Kamat wrote: sdhci_bcm_kona_of_match structure is always compiled in. Hence of_match_ptr macro is not necessary. Signed-off-by: Sachin Kamat --- drivers/mmc/host/sdhci-bcm-kona.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/h

Re: [PATCH 4/4 V2] mmc: esdhc: Add broken timeout quirk for p4/p5 board

2013-07-19 Thread Scott Wood
On 07/18/2013 09:19:59 PM, Zhang Haijun-B42677 wrote: Thanks. Regards Haijun. > -Original Message- > From: Wood Scott-B07421 > Sent: Thursday, July 18, 2013 1:14 AM > To: Zhang Haijun-B42677 > Cc: linux-mmc@vger.kernel.org; linuxppc-...@lists.ozlabs.org; > cbouatmai...@gmail.com; c..

Re: [PATCH 1/4 V4] powerpc/85xx: Add support for 85xx cpu type detection

2013-07-19 Thread Scott Wood
On 07/18/2013 09:28:20 PM, Zhang Haijun-B42677 wrote: Hi, scott I had update this patch, this is the newest version. If there is no other problem, can you help merge this patch? I hope to make sure the following patch don't need to rebuild due to the change of this patch. It looks OK. I'll

Re: [PATCH 1/3] mmc: sdhci-bcm-kona: Remove unneeded version.h inclusion

2013-07-19 Thread Sachin Kamat
On 8 July 2013 11:41, Sachin Kamat wrote: > version.h header inclusion is not necessary as detected by > versioncheck. > > Signed-off-by: Sachin Kamat > --- > drivers/mmc/host/sdhci-bcm-kona.c |1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/mmc/host/sdhci-bcm-kona.c > b/drive

[PATCH] mmc: mmc_test: replace strict_strtol() with kstrtol_from_user()

2013-07-19 Thread Jingoo Han
The usage of strict_strtol() is not preferred, because strict_strtol() is obsolete. Thus, kstrtol() should be used. Also, both kstrtol() and copy_from_user() can be replaced with kstrtol_from_user() to make the code simpler. Signed-off-by: Jingoo Han --- drivers/mmc/card/mmc_test.c | 14 -