From: Jaehoon Chung <jh80.chung@samsung.com>
To: Shawn Lin <shawn.lin@rock-chips.com>,
Ulf Hansson <ulf.hansson@linaro.org>
Cc: linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mmc: dw_mmc: remove "disable-wp" property
Date: Mon, 18 Jan 2016 19:13:46 +0900 [thread overview]
Message-ID: <569CBADA.20508@samsung.com> (raw)
In-Reply-To: <1453110604-8169-1-git-send-email-shawn.lin@rock-chips.com>
Hi, Shawn.
On 01/18/2016 06:50 PM, Shawn Lin wrote:
> dw_mmc already use mmc_of_parse to get disable-wp,
> so we remove it from dw_mmc. And dw_mci_slot_of_parse
> will not be removed as well.
Yes, it's already used "mmc_of_parse".
You can see "slot quirks 'disable-wp' is deprecated".
Since the properties was included in slot regs before using "mmc_of_parse".
So we chosen to print the message "deprecated" to prevent the developer's confusion.
At this time, actually, i think there are no developers who confused this.
I will consider more about this patch.
Thanks!
Best Regards,
Jaehoon Chung
>
> Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
> ---
>
> drivers/mmc/host/dw_mmc.c | 43 -------------------------------------------
> 1 file changed, 43 deletions(-)
>
> diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
> index fddbcb6..8687554 100644
> --- a/drivers/mmc/host/dw_mmc.c
> +++ b/drivers/mmc/host/dw_mmc.c
> @@ -2493,47 +2493,6 @@ static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
> return IRQ_HANDLED;
> }
>
> -#ifdef CONFIG_OF
> -/* given a slot, find out the device node representing that slot */
> -static struct device_node *dw_mci_of_find_slot_node(struct dw_mci_slot *slot)
> -{
> - struct device *dev = slot->mmc->parent;
> - struct device_node *np;
> - const __be32 *addr;
> - int len;
> -
> - if (!dev || !dev->of_node)
> - return NULL;
> -
> - for_each_child_of_node(dev->of_node, np) {
> - addr = of_get_property(np, "reg", &len);
> - if (!addr || (len < sizeof(int)))
> - continue;
> - if (be32_to_cpup(addr) == slot->id)
> - return np;
> - }
> - return NULL;
> -}
> -
> -static void dw_mci_slot_of_parse(struct dw_mci_slot *slot)
> -{
> - struct device_node *np = dw_mci_of_find_slot_node(slot);
> -
> - if (!np)
> - return;
> -
> - if (of_property_read_bool(np, "disable-wp")) {
> - slot->mmc->caps2 |= MMC_CAP2_NO_WRITE_PROTECT;
> - dev_warn(slot->mmc->parent,
> - "Slot quirk 'disable-wp' is deprecated\n");
> - }
> -}
> -#else /* CONFIG_OF */
> -static void dw_mci_slot_of_parse(struct dw_mci_slot *slot)
> -{
> -}
> -#endif /* CONFIG_OF */
> -
> static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
> {
> struct mmc_host *mmc;
> @@ -2590,8 +2549,6 @@ static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
> if (host->pdata->caps2)
> mmc->caps2 = host->pdata->caps2;
>
> - dw_mci_slot_of_parse(slot);
> -
> ret = mmc_of_parse(mmc);
> if (ret)
> goto err_host_allocated;
>
prev parent reply other threads:[~2016-01-18 10:13 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-18 9:50 Shawn Lin
2016-01-18 10:13 ` Jaehoon Chung [this message]
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=569CBADA.20508@samsung.com \
--to=jh80.chung@samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=shawn.lin@rock-chips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome