]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
fat: follow rename pack_hex_byte() to hex_byte_pack()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 24 Oct 2011 14:58:59 +0000 (01:58 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 25 Oct 2011 09:08:09 +0000 (20:08 +1100)
There is no functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/fat/dir.c

index 5efbd5d7701a1d63721f646958d92f36830807f0..aca191bd5f8fa66bcef77c549b647fce81e28b0f 100644 (file)
@@ -156,8 +156,8 @@ static int uni16_to_x8(struct super_block *sb, unsigned char *ascii,
                } 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++ = '?';