The patch titled Subject: fat: follow rename pack_hex_byte() to hex_byte_pack() has been added to the -mm tree. Its filename is fat-follow-rename-pack_hex_byte-to-hex_byte_pack.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Subject: fat: follow rename pack_hex_byte() to hex_byte_pack() There is no functional change. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Acked-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/fat/dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/fat/dir.c~fat-follow-rename-pack_hex_byte-to-hex_byte_pack fs/fat/dir.c --- a/fs/fat/dir.c~fat-follow-rename-pack_hex_byte-to-hex_byte_pack +++ a/fs/fat/dir.c @@ -156,8 +156,8 @@ static int uni16_to_x8(struct super_bloc } else { if (uni_xlate == 1) { *op++ = ':'; - op = pack_hex_byte(op, ec >> 8); - op = pack_hex_byte(op, ec); + op = hex_byte_pack(op, ec >> 8); + op = hex_byte_pack(op, ec); len -= 5; } else { *op++ = '?'; _ Subject: Subject: fat: follow rename pack_hex_byte() to hex_byte_pack() Patches currently in -mm which might be from andriy.shevchenko@xxxxxxxxxxxxxxx are linux-next.patch selinuxfs-remove-custome-hex_to_bin.patch lib-rename-pack_hex_byte-to-hex_byte_pack.patch kgdb-follow-rename-pack_hex_byte-to-hex_byte_pack.patch security-follow-rename-pack_hex_byte-to-hex_byte_pack.patch fat-follow-rename-pack_hex_byte-to-hex_byte_pack.patch wireless-at76c50x-follow-rename-pack_hex_byte-to-hex_byte_pack.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