Commit 100c12f2 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mika Westerberg

thunderbolt: Switch to use device_property_count_uXX()

Use device_property_count_uXX() directly, that makes code neater.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: default avatarYehezkel Bernat <YehezkelShB@gmail.com>
Signed-off-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
parent e21a712a
...@@ -414,7 +414,7 @@ static int tb_drom_copy_efi(struct tb_switch *sw, u16 *size) ...@@ -414,7 +414,7 @@ static int tb_drom_copy_efi(struct tb_switch *sw, u16 *size)
struct device *dev = &sw->tb->nhi->pdev->dev; struct device *dev = &sw->tb->nhi->pdev->dev;
int len, res; int len, res;
len = device_property_read_u8_array(dev, "ThunderboltDROM", NULL, 0); len = device_property_count_u8(dev, "ThunderboltDROM");
if (len < 0 || len < sizeof(struct tb_drom_header)) if (len < 0 || len < sizeof(struct tb_drom_header))
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment