Re: [PATCH RESEND] clk: Fix JSON output in debugfs

2015-04-30 Thread Stephen Boyd
On 04/30, Felipe Balbi wrote: > On Thu, Apr 30, 2015 at 05:37:12PM -0700, Stephen Boyd wrote: > > On 04/29, Stefan Wahren wrote: > > > key/value pairs in a JSON object must be separated by a comma. > > > After adding the properties "accuracy" and "phase" the JSON output > > > of /sys/kernel/debug/c

Re: [PATCH RESEND] clk: Fix JSON output in debugfs

2015-04-30 Thread Felipe Balbi
On Thu, Apr 30, 2015 at 05:37:12PM -0700, Stephen Boyd wrote: > On 04/29, Stefan Wahren wrote: > > key/value pairs in a JSON object must be separated by a comma. > > After adding the properties "accuracy" and "phase" the JSON output > > of /sys/kernel/debug/clk/clk_dump is invalid. > > > > So add

Re: [PATCH RESEND] clk: Fix JSON output in debugfs

2015-04-30 Thread Stefan Wahren
> Stephen Boyd hat am 1. Mai 2015 um 02:37 geschrieben: > > > On 04/29, Stefan Wahren wrote: > > key/value pairs in a JSON object must be separated by a comma. > > After adding the properties "accuracy" and "phase" the JSON output > > of /sys/kernel/debug/clk/clk_dump is invalid. > > > > So add t

Re: [PATCH RESEND] clk: Fix JSON output in debugfs

2015-04-30 Thread Stephen Boyd
On 04/29, Stefan Wahren wrote: > key/value pairs in a JSON object must be separated by a comma. > After adding the properties "accuracy" and "phase" the JSON output > of /sys/kernel/debug/clk/clk_dump is invalid. > > So add the missing commas to fix it. > > Fixes: 5279fc4 ("clk: add clk accuracy

[PATCH RESEND] clk: Fix JSON output in debugfs

2015-04-29 Thread Stefan Wahren
key/value pairs in a JSON object must be separated by a comma. After adding the properties "accuracy" and "phase" the JSON output of /sys/kernel/debug/clk/clk_dump is invalid. So add the missing commas to fix it. Fixes: 5279fc4 ("clk: add clk accuracy retrieval support") Signed-off-by: Stefan Wah