All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jaehoon Chung <jh80.chung@samsung.com>
To: Seungwon Jeon <tgih.jun@samsung.com>,
	'linux-mmc' <linux-mmc@vger.kernel.org>
Cc: 'Chris Ball' <chris@printf.net>,
	'Ulf Hansson' <ulf.hansson@linaro.org>,
	devicetree@vger.kernel.org, heiko@sntech.de, dinguyen@altera.com,
	'Mark Rutland' <mark.rutland@arm.com>,
	kgene.kim@samsung.com, linux-samsung-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCHv2 5/5] mmc: dw_mmc: replace "disable-wp" from slot's quirk to host's quirk
Date: Mon, 07 Jul 2014 20:00:14 +0900	[thread overview]
Message-ID: <53BA7DBE.8020200@samsung.com> (raw)
In-Reply-To: <000d01cf99c4$920eb1b0$b62c1510$%jun@samsung.com>

Hi, Seungwon.

On 07/07/2014 06:19 PM, Seungwon Jeon wrote:
> Sorry for late review.
Never mind. :)
> If you're in progress for next, please consider it.
> 
> On Mon, June 30, 2014, Jaehoon Chung wrote:
>> Replaced the "disable-wp" into host's quirks.
>> (Because the slot-node is removed at dt-file.)
>>
>> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
>> ---
>>  drivers/mmc/host/dw_mmc.c |   13 ++++++-------
>>  1 file changed, 6 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
>> index 1ac227c..6c5d696 100644
>> --- a/drivers/mmc/host/dw_mmc.c
>> +++ b/drivers/mmc/host/dw_mmc.c
>> @@ -994,10 +994,11 @@ static int dw_mci_get_ro(struct mmc_host *mmc)
>>  {
>>  	int read_only;
>>  	struct dw_mci_slot *slot = mmc_priv(mmc);
>> +	struct dw_mci_board *brd = slot->host->pdata;
>>  	int gpio_ro = mmc_gpio_get_ro(mmc);
>>
>>  	/* Use platform get_ro function, else try on board write protect */
>> -	if (slot->quirks & DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT)
> It would be better to use host->quirks instead of brd->quirks
> It's finally updated with host->pdata->quirks on probing.
It's reasonable, i will fix it and resend.

Best Regards,
Jaehoon Chung
> 
> Thanks,
> Seungwon Jeon
> 
> 

WARNING: multiple messages have this Message-ID (diff)
From: jh80.chung@samsung.com (Jaehoon Chung)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv2 5/5] mmc: dw_mmc: replace "disable-wp" from slot's quirk to host's quirk
Date: Mon, 07 Jul 2014 20:00:14 +0900	[thread overview]
Message-ID: <53BA7DBE.8020200@samsung.com> (raw)
In-Reply-To: <000d01cf99c4$920eb1b0$b62c1510$%jun@samsung.com>

Hi, Seungwon.

On 07/07/2014 06:19 PM, Seungwon Jeon wrote:
> Sorry for late review.
Never mind. :)
> If you're in progress for next, please consider it.
> 
> On Mon, June 30, 2014, Jaehoon Chung wrote:
>> Replaced the "disable-wp" into host's quirks.
>> (Because the slot-node is removed at dt-file.)
>>
>> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
>> ---
>>  drivers/mmc/host/dw_mmc.c |   13 ++++++-------
>>  1 file changed, 6 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
>> index 1ac227c..6c5d696 100644
>> --- a/drivers/mmc/host/dw_mmc.c
>> +++ b/drivers/mmc/host/dw_mmc.c
>> @@ -994,10 +994,11 @@ static int dw_mci_get_ro(struct mmc_host *mmc)
>>  {
>>  	int read_only;
>>  	struct dw_mci_slot *slot = mmc_priv(mmc);
>> +	struct dw_mci_board *brd = slot->host->pdata;
>>  	int gpio_ro = mmc_gpio_get_ro(mmc);
>>
>>  	/* Use platform get_ro function, else try on board write protect */
>> -	if (slot->quirks & DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT)
> It would be better to use host->quirks instead of brd->quirks
> It's finally updated with host->pdata->quirks on probing.
It's reasonable, i will fix it and resend.

Best Regards,
Jaehoon Chung
> 
> Thanks,
> Seungwon Jeon
> 
> 

  reply	other threads:[~2014-07-07 11:00 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-30 11:49 [PATCHv2 0/5] ARM: remove the sub-node and deprecated supports-highspeed property for dwmmc Jaehoon Chung
2014-06-30 11:49 ` Jaehoon Chung
2014-06-30 11:49 ` [PATCHv2 1/5] mmc: dw_mmc: modify the dt-binding for removing slot-node and supports-highspeed Jaehoon Chung
2014-06-30 11:49   ` Jaehoon Chung
2014-06-30 11:49 ` [PATCHv2 2/5] ARM: dts: exynos: unuse the slot-node and deprecated the supports-highspeed for dw-mmc Jaehoon Chung
2014-06-30 11:49   ` Jaehoon Chung
2014-07-07  7:29   ` Seungwon Jeon
2014-07-07  7:29     ` Seungwon Jeon
2014-07-07  7:33     ` Jaehoon Chung
2014-07-07  7:33       ` Jaehoon Chung
2014-06-30 11:49 ` [PATCHv2 3/5] ARM: dts: socfpga: " Jaehoon Chung
2014-06-30 11:49   ` Jaehoon Chung
2014-06-30 11:49 ` [PATCHv2 4/5] ARM: dts: rockchip: " Jaehoon Chung
2014-06-30 11:49   ` Jaehoon Chung
2014-07-04 11:19   ` Heiko Stübner
2014-07-04 11:19     ` Heiko Stübner
2014-06-30 11:49 ` [PATCHv2 5/5] mmc: dw_mmc: replace "disable-wp" from slot's quirk to host's quirk Jaehoon Chung
2014-06-30 11:49   ` Jaehoon Chung
2014-07-07  9:19   ` Seungwon Jeon
2014-07-07  9:19     ` Seungwon Jeon
2014-07-07 11:00     ` Jaehoon Chung [this message]
2014-07-07 11:00       ` Jaehoon Chung
2014-07-01  8:26 ` [PATCHv2 0/5] ARM: remove the sub-node and deprecated supports-highspeed property for dwmmc Sachin Kamat
2014-07-01  8:26   ` Sachin Kamat
2014-07-04 11:06   ` Jaehoon Chung
2014-07-04 11:06     ` Jaehoon Chung

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53BA7DBE.8020200@samsung.com \
    --to=jh80.chung@samsung.com \
    --cc=chris@printf.net \
    --cc=devicetree@vger.kernel.org \
    --cc=dinguyen@altera.com \
    --cc=heiko@sntech.de \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=tgih.jun@samsung.com \
    --cc=ulf.hansson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.