The patch titled Subject: device-property-convert-to-use-match_string-helper fix has been removed from the -mm tree. Its filename was device-property-convert-to-use-match_string-helper-fix.patch This patch was dropped because it was folded into device-property-convert-to-use-match_string-helper.patch ------------------------------------------------------ From: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Subject: device-property-convert-to-use-match_string-helper fix Since match_string() returns -EINVAL let's convert it to -ENODATA as designed by device property API. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/property.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/base/property.c~device-property-convert-to-use-match_string-helper-fix drivers/base/property.c --- a/drivers/base/property.c~device-property-convert-to-use-match_string-helper-fix +++ a/drivers/base/property.c @@ -665,6 +665,8 @@ int fwnode_property_match_string(struct goto out; ret = match_string(values, nval, string); + if (ret < 0) + ret = -ENODATA; out: kfree(values); return ret; _ Patches currently in -mm which might be from andriy.shevchenko@xxxxxxxxxxxxxxx are lib-string-introduce-match_string-helper.patch device-property-convert-to-use-match_string-helper.patch pinctrl-convert-to-use-match_string-helper.patch drm-edid-convert-to-use-match_string-helper.patch power-charger_manager-convert-to-use-match_string-helper.patch power-ab8500-convert-to-use-match_string-helper.patch ata-hpt366-convert-to-use-match_string-helper.patch ide-hpt366-convert-to-use-match_string-helper.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html