usb: typec: tcpm: Switch to use fwnode_property_count_uXX()
Use use fwnode_property_count_uXX() directly, that makes code neater. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20190723193750.69038-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
41b57327b2
commit
bc7514925c
@ -4410,8 +4410,7 @@ static int tcpm_fw_get_caps(struct tcpm_port *port,
|
||||
goto sink;
|
||||
|
||||
/* Get source pdos */
|
||||
ret = fwnode_property_read_u32_array(fwnode, "source-pdos",
|
||||
NULL, 0);
|
||||
ret = fwnode_property_count_u32(fwnode, "source-pdos");
|
||||
if (ret <= 0)
|
||||
return -EINVAL;
|
||||
|
||||
@ -4435,8 +4434,7 @@ static int tcpm_fw_get_caps(struct tcpm_port *port,
|
||||
return -EINVAL;
|
||||
sink:
|
||||
/* Get sink pdos */
|
||||
ret = fwnode_property_read_u32_array(fwnode, "sink-pdos",
|
||||
NULL, 0);
|
||||
ret = fwnode_property_count_u32(fwnode, "sink-pdos");
|
||||
if (ret <= 0)
|
||||
return -EINVAL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user