Re: [PATCH v2 3/3] device property: fwnode_property_read_string_array() returns nr of strings
From: Sakari Ailus <hidden>
Date: 2017-03-28 13:07:13
Also in:
linux-acpi
From: Sakari Ailus <hidden>
Date: 2017-03-28 13:07:13
Also in:
linux-acpi
Hi Mika, Thank you for the review! On Tue, Mar 28, 2017 at 03:52:31PM +0300, Mika Westerberg wrote:
On Tue, Mar 28, 2017 at 03:22:19PM +0300, Sakari Ailus wrote:quoted
- ret = acpi_copy_property_array_string(items, (char **)val, nval); + ret = acpi_copy_property_array_string( + items, (char **)val, + min_t(u32, nval, obj->package.count));I think this looks better if written like: ret = acpi_copy_property_array_string(items, (char **)val, min_t(u32, nval, obj->package.count));
I prefer the former although I have no strong opinion either way. Using an indentation that is automatically intended by a text editor is also an advantage. I can change it if you insist. :-)
Regardless of that, Reviewed-by: Mika Westerberg <mika.westerberg-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
Thanks! -- Regards, Sakari Ailus e-mail: sakari.ailus-X3B1VOXEql0@public.gmane.org XMPP: sailus-PCDdDYkjdNMDXYZnReoRVg@public.gmane.org -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html