The patch titled Subject: lib/string_helpers: fix indentation in few places has been removed from the -mm tree. Its filename was lib-string_helpers-fix-indentation-in-few-places.patch This patch was dropped because it is obsolete ------------------------------------------------------ From: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Subject: lib/string_helpers: fix indentation in few places Fix the indentation of label and put snprintf() to one line. There is no functional change. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Matt Fleming <matt@xxxxxxxxxxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Robert Elliott <elliott@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/string_helpers.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN lib/string_helpers.c~lib-string_helpers-fix-indentation-in-few-places lib/string_helpers.c --- a/lib/string_helpers.c~lib-string_helpers-fix-indentation-in-few-places +++ a/lib/string_helpers.c @@ -117,14 +117,13 @@ void string_get_size(u64 size, u64 blk_s tmp[j+1] = '\0'; } - out: +out: if (i >= STRING_UNITS_2_NUM) unit = "UNK"; else unit = units_str[units][i]; - snprintf(buf, len, "%u%s %s", (u32)size, - tmp, unit); + snprintf(buf, len, "%u%s %s", (u32)size, tmp, unit); } EXPORT_SYMBOL(string_get_size); _ Patches currently in -mm which might be from andriy.shevchenko@xxxxxxxxxxxxxxx are lib-string-introduce-match_string-helper.patch lib-string-introduce-match_string-helper-fix.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 x86-efi-use-proper-units-in-efi_find_mirror.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