The patch titled Subject: lib-string-introduce-match_string-helper fix has been removed from the -mm tree. Its filename was lib-string-introduce-match_string-helper-fix.patch This patch was dropped because it was folded into lib-string-introduce-match_string-helper.patch ------------------------------------------------------ From: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Subject: lib-string-introduce-match_string-helper fix Fix return code to be -EINVAL instead of -ENODATA. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN lib/string.c~lib-string-introduce-match_string-helper-fix lib/string.c --- a/lib/string.c~lib-string-introduce-match_string-helper-fix +++ a/lib/string.c @@ -637,7 +637,7 @@ EXPORT_SYMBOL(sysfs_streq); * @string: string to match with * * Return: - * index of a @string in the @array if matches, or %-ENODATA otherwise. + * index of a @string in the @array if matches, or %-EINVAL otherwise. */ int match_string(const char * const *array, size_t n, const char *string) { @@ -652,7 +652,7 @@ int match_string(const char * const *arr return index; } - return -ENODATA; + return -EINVAL; } EXPORT_SYMBOL(match_string); _ 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 device-property-convert-to-use-match_string-helper-fix.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