* [PATCH] mmc: sunxi: change controller error info to debug level
@ 2017-03-16 13:29 Icenowy Zheng
[not found] ` <20170316132903.61246-1-icenowy-ymACFijhrKM@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Icenowy Zheng @ 2017-03-16 13:29 UTC (permalink / raw)
To: Ulf Hansson, Maxime Ripard, Chen-Yu Tsai, Hans de Goede
Cc: linux-mmc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-sunxi-/JYPxA39Uh5TLH3MbocFFw, Icenowy Zheng
The controller's errors are usually normal (for example, for MMC or SDIO
cards, some errors are expected to happen; and for boards without a
dedicated card detect pin the error info will even flood console and
hide other normal messages) and hard to understand.
Change their print level to debug, thus it won't be shown to generic
users.
Signed-off-by: Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org>
---
drivers/mmc/host/sunxi-mmc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
index 6ffcd2838272..0391c62cc99f 100644
--- a/drivers/mmc/host/sunxi-mmc.c
+++ b/drivers/mmc/host/sunxi-mmc.c
@@ -489,7 +489,7 @@ static void sunxi_mmc_dump_errinfo(struct sunxi_mmc_host *host)
cmd->opcode == SD_IO_RW_DIRECT))
return;
- dev_err(mmc_dev(host->mmc),
+ dev_dbg(mmc_dev(host->mmc),
"smc %d err, cmd %d,%s%s%s%s%s%s%s%s%s%s !!\n",
host->mmc->index, cmd->opcode,
data ? (data->flags & MMC_DATA_WRITE ? " WR" : " RD") : "",
--
2.12.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] mmc: sunxi: change controller error info to debug level
[not found] ` <20170316132903.61246-1-icenowy-ymACFijhrKM@public.gmane.org>
@ 2017-03-20 8:59 ` Maxime Ripard
2017-03-24 7:46 ` Ulf Hansson
1 sibling, 0 replies; 4+ messages in thread
From: Maxime Ripard @ 2017-03-20 8:59 UTC (permalink / raw)
To: Icenowy Zheng
Cc: Ulf Hansson, Chen-Yu Tsai, Hans de Goede,
linux-mmc-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-sunxi-/JYPxA39Uh5TLH3MbocFFw
[-- Attachment #1: Type: text/plain, Size: 694 bytes --]
On Thu, Mar 16, 2017 at 09:29:03PM +0800, Icenowy Zheng wrote:
> The controller's errors are usually normal (for example, for MMC or SDIO
> cards, some errors are expected to happen; and for boards without a
> dedicated card detect pin the error info will even flood console and
> hide other normal messages) and hard to understand.
>
> Change their print level to debug, thus it won't be shown to generic
> users.
>
> Signed-off-by: Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org>
Acked-by: Maxime Ripard <maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] mmc: sunxi: change controller error info to debug level
[not found] ` <20170316132903.61246-1-icenowy-ymACFijhrKM@public.gmane.org>
2017-03-20 8:59 ` Maxime Ripard
@ 2017-03-24 7:46 ` Ulf Hansson
[not found] ` <CAPDyKFppqPjjXtAAcSynxMw-1Oc7W6ZMf=oJLzWwsnLUWCq5Rw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
1 sibling, 1 reply; 4+ messages in thread
From: Ulf Hansson @ 2017-03-24 7:46 UTC (permalink / raw)
To: Icenowy Zheng
Cc: Maxime Ripard, Chen-Yu Tsai, Hans de Goede,
linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-sunxi-/JYPxA39Uh5TLH3MbocFFw
On 16 March 2017 at 14:29, Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org> wrote:
> The controller's errors are usually normal (for example, for MMC or SDIO
> cards, some errors are expected to happen; and for boards without a
> dedicated card detect pin the error info will even flood console and
> hide other normal messages) and hard to understand.
>
> Change their print level to debug, thus it won't be shown to generic
> users.
>
> Signed-off-by: Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org>
For some reason this change didn't enter the mmc patchtracker. However
I have picked it up for next anyway.
Thanks!
Kind regards
Uffe
> ---
> drivers/mmc/host/sunxi-mmc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
> index 6ffcd2838272..0391c62cc99f 100644
> --- a/drivers/mmc/host/sunxi-mmc.c
> +++ b/drivers/mmc/host/sunxi-mmc.c
> @@ -489,7 +489,7 @@ static void sunxi_mmc_dump_errinfo(struct sunxi_mmc_host *host)
> cmd->opcode == SD_IO_RW_DIRECT))
> return;
>
> - dev_err(mmc_dev(host->mmc),
> + dev_dbg(mmc_dev(host->mmc),
> "smc %d err, cmd %d,%s%s%s%s%s%s%s%s%s%s !!\n",
> host->mmc->index, cmd->opcode,
> data ? (data->flags & MMC_DATA_WRITE ? " WR" : " RD") : "",
> --
> 2.12.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] mmc: sunxi: change controller error info to debug level
[not found] ` <CAPDyKFppqPjjXtAAcSynxMw-1Oc7W6ZMf=oJLzWwsnLUWCq5Rw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-03-24 7:52 ` Icenowy Zheng
0 siblings, 0 replies; 4+ messages in thread
From: Icenowy Zheng @ 2017-03-24 7:52 UTC (permalink / raw)
To: Ulf Hansson
Cc: Maxime Ripard, Chen-Yu Tsai, Hans de Goede,
linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
24.03.2017, 15:46, "Ulf Hansson" <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>:
> On 16 March 2017 at 14:29, Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org> wrote:
>> The controller's errors are usually normal (for example, for MMC or SDIO
>> cards, some errors are expected to happen; and for boards without a
>> dedicated card detect pin the error info will even flood console and
>> hide other normal messages) and hard to understand.
>>
>> Change their print level to debug, thus it won't be shown to generic
>> users.
>>
>> Signed-off-by: Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org>
>
> For some reason this change didn't enter the mmc patchtracker. However
> I have picked it up for next anyway.
Thanks!
Maybe it's because of the e-mail provider chosen by AOSC (Yandex.Mail).
Sorry. I will try to ask for a migration to other e-mail provider.
>
> Thanks!
>
> Kind regards
> Uffe
>
>> ---
>> drivers/mmc/host/sunxi-mmc.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
>> index 6ffcd2838272..0391c62cc99f 100644
>> --- a/drivers/mmc/host/sunxi-mmc.c
>> +++ b/drivers/mmc/host/sunxi-mmc.c
>> @@ -489,7 +489,7 @@ static void sunxi_mmc_dump_errinfo(struct sunxi_mmc_host *host)
>> cmd->opcode == SD_IO_RW_DIRECT))
>> return;
>>
>> - dev_err(mmc_dev(host->mmc),
>> + dev_dbg(mmc_dev(host->mmc),
>> "smc %d err, cmd %d,%s%s%s%s%s%s%s%s%s%s !!\n",
>> host->mmc->index, cmd->opcode,
>> data ? (data->flags & MMC_DATA_WRITE ? " WR" : " RD") : "",
>> --
>> 2.12.0
--
You received this message because you are subscribed to the Google Groups "linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-24 7:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-16 13:29 [PATCH] mmc: sunxi: change controller error info to debug level Icenowy Zheng
[not found] ` <20170316132903.61246-1-icenowy-ymACFijhrKM@public.gmane.org>
2017-03-20 8:59 ` Maxime Ripard
2017-03-24 7:46 ` Ulf Hansson
[not found] ` <CAPDyKFppqPjjXtAAcSynxMw-1Oc7W6ZMf=oJLzWwsnLUWCq5Rw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-03-24 7:52 ` Icenowy Zheng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox