Re: [PATCH v2 3/3] lib: logic_pio: Make some prints explicitly hex

2019-03-25 Thread Andy Shevchenko
On Mon, Mar 25, 2019 at 11:49 AM John Garry wrote: > On 23/03/2019 19:12, Andy Shevchenko wrote: > > On Wed, Mar 20, 2019 at 8:14 PM John Garry wrote: > >> > >> Some prints in the code are for a hex number, but don't prefix "0x". Add > >> the prefix, as is the norm. > > > >> - pr_err("addr

Re: [PATCH v2 3/3] lib: logic_pio: Make some prints explicitly hex

2019-03-25 Thread John Garry
On 23/03/2019 19:12, Andy Shevchenko wrote: On Wed, Mar 20, 2019 at 8:14 PM John Garry wrote: Some prints in the code are for a hex number, but don't prefix "0x". Add the prefix, as is the norm. - pr_err("addr %llx not registered in io_range_list\n", + pr_err("addr 0x%llx not

Re: [PATCH v2 3/3] lib: logic_pio: Make some prints explicitly hex

2019-03-23 Thread Andy Shevchenko
On Wed, Mar 20, 2019 at 8:14 PM John Garry wrote: > > Some prints in the code are for a hex number, but don't prefix "0x". Add > the prefix, as is the norm. > - pr_err("addr %llx not registered in io_range_list\n", > + pr_err("addr 0x%llx not registered in io_range_list\n", >

[PATCH v2 3/3] lib: logic_pio: Make some prints explicitly hex

2019-03-20 Thread John Garry
Some prints in the code are for a hex number, but don't prefix "0x". Add the prefix, as is the norm. Signed-off-by: John Garry --- lib/logic_pio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/logic_pio.c b/lib/logic_pio.c index 026a4fb4b944..6b37cc79a0bf 100644