Re: [PATCH] lib/vsprintf: Do not handle %pO[^F] as %px

2018-08-07 Thread Petr Mladek
On Mon 2018-08-06 15:34:21, Bart Van Assche wrote: > This patch avoids that gcc reports the following when building with W=1: > > lib/vsprintf.c:1941:3: warning: this statement may fall through > [-Wimplicit-fallthrough=] >switch (fmt[1]) { >^~ > > Fixes: ce4fecf1fe15 ("vsprintf:

Re: [PATCH] lib/vsprintf: Do not handle %pO[^F] as %px

2018-08-07 Thread Petr Mladek
On Mon 2018-08-06 15:34:21, Bart Van Assche wrote: > This patch avoids that gcc reports the following when building with W=1: > > lib/vsprintf.c:1941:3: warning: this statement may fall through > [-Wimplicit-fallthrough=] >switch (fmt[1]) { >^~ > > Fixes: ce4fecf1fe15 ("vsprintf:

[PATCH] lib/vsprintf: Do not handle %pO[^F] as %px

2018-08-06 Thread Bart Van Assche
This patch avoids that gcc reports the following when building with W=1: lib/vsprintf.c:1941:3: warning: this statement may fall through [-Wimplicit-fallthrough=] switch (fmt[1]) { ^~ Fixes: ce4fecf1fe15 ("vsprintf: Add %p extension "%pOF" for device tree") Signed-off-by: Bart Van

[PATCH] lib/vsprintf: Do not handle %pO[^F] as %px

2018-08-06 Thread Bart Van Assche
This patch avoids that gcc reports the following when building with W=1: lib/vsprintf.c:1941:3: warning: this statement may fall through [-Wimplicit-fallthrough=] switch (fmt[1]) { ^~ Fixes: ce4fecf1fe15 ("vsprintf: Add %p extension "%pOF" for device tree") Signed-off-by: Bart Van