Message ID | 20190723193044.68682-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 656d29ce0f44163dbb12ff30b5a1a50644040500 |
Headers | show |
Series | [v1] Input: matrix-keymap - Switch to use device_property_count_u32() | expand |
diff --git a/drivers/input/matrix-keymap.c b/drivers/input/matrix-keymap.c index da312be94c3a..4fa53423f56c 100644 --- a/drivers/input/matrix-keymap.c +++ b/drivers/input/matrix-keymap.c @@ -81,7 +81,7 @@ static int matrix_keypad_parse_keymap(const char *propname, if (!propname) propname = "linux,keymap"; - size = device_property_read_u32_array(dev, propname, NULL, 0); + size = device_property_count_u32(dev, propname); if (size <= 0) { dev_err(dev, "missing or malformed property %s: %d\n", propname, size);
Use use device_property_count_u32() directly, that makes code neater. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/input/matrix-keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)