Re: [PATCH v3 08/10] lib/vsprintf: OF nodes are first and foremost, struct device_nodes

2019-09-02 Thread Sakari Ailus
On Fri, Aug 30, 2019 at 03:57:49PM +0300, Andy Shevchenko wrote: > On Thu, Aug 29, 2019 at 01:10:41PM +0300, Sakari Ailus wrote: > > Factor out static kobject_string() function that simply calls > > device_node_string(), and thus remove references to kobjects (as these are > > struct device_node).

Re: [PATCH v3 08/10] lib/vsprintf: OF nodes are first and foremost, struct device_nodes

2019-08-30 Thread Andy Shevchenko
On Thu, Aug 29, 2019 at 01:10:41PM +0300, Sakari Ailus wrote: > Factor out static kobject_string() function that simply calls > device_node_string(), and thus remove references to kobjects (as these are > struct device_node). Not sure. This removes "(%pO?)" error string. -- With Best Regards, An

[PATCH v3 08/10] lib/vsprintf: OF nodes are first and foremost, struct device_nodes

2019-08-29 Thread Sakari Ailus
Factor out static kobject_string() function that simply calls device_node_string(), and thus remove references to kobjects (as these are struct device_node). Signed-off-by: Sakari Ailus --- lib/vsprintf.c | 15 ++- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/lib/vs