Message ID | 20190723194726.69545-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 6ce9ba07b1b78ca3412eac808cd59eea09c80468 |
Headers | show |
Series | [v1] usb: typec: mux: Switch to use fwnode_property_count_uXX() | expand |
On Tue, Jul 23, 2019 at 10:47:26PM +0300, Andy Shevchenko wrote: > Use fwnode_property_count_uXX() directly, that makes code neater. > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> > --- > drivers/usb/typec/mux.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/usb/typec/mux.c b/drivers/usb/typec/mux.c > index 61b7bc58dd81..57907f26f681 100644 > --- a/drivers/usb/typec/mux.c > +++ b/drivers/usb/typec/mux.c > @@ -215,7 +215,7 @@ static void *typec_mux_match(struct device_connection *con, int ep, void *data) > } > > /* Alternate Mode muxes */ > - nval = fwnode_property_read_u16_array(con->fwnode, "svid", NULL, 0); > + nval = fwnode_property_count_u16(con->fwnode, "svid"); > if (nval <= 0) > return NULL; > > -- > 2.20.1 thanks,
diff --git a/drivers/usb/typec/mux.c b/drivers/usb/typec/mux.c index 61b7bc58dd81..57907f26f681 100644 --- a/drivers/usb/typec/mux.c +++ b/drivers/usb/typec/mux.c @@ -215,7 +215,7 @@ static void *typec_mux_match(struct device_connection *con, int ep, void *data) } /* Alternate Mode muxes */ - nval = fwnode_property_read_u16_array(con->fwnode, "svid", NULL, 0); + nval = fwnode_property_count_u16(con->fwnode, "svid"); if (nval <= 0) return NULL;
Use fwnode_property_count_uXX() directly, that makes code neater. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/usb/typec/mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)