projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0247311
)
fat: follow rename pack_hex_byte() to hex_byte_pack()
author
Andy Shevchenko
<andriy.shevchenko@linux.intel.com>
Tue, 1 Nov 2011 00:12:57 +0000
(17:12 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Tue, 1 Nov 2011 00:30:57 +0000
(17:30 -0700)
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>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/fat/dir.c
patch
|
blob
|
history
diff --git
a/fs/fat/dir.c
b/fs/fat/dir.c
index 5efbd5d7701a1d63721f646958d92f36830807f0..aca191bd5f8fa66bcef77c549b647fce81e28b0f 100644
(file)
--- a/
fs/fat/dir.c
+++ b/
fs/fat/dir.c
@@
-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++ = '?';