summaryrefslogtreecommitdiffstats
path: root/fs/isofs
diff options
context:
space:
mode:
authoryoung dave <hidave.darkstar@gmail.com>2007-07-15 23:40:17 -0700
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-16 09:05:43 -0700
commitf17e121fd055ba60d57a992702e59ae495faba76 (patch)
treedb6407bd31f3410b26b9bdab8d641850813d493e /fs/isofs
parent03a9c30c231a61dd7457681aef51cc38ee01f766 (diff)
downloadop-kernel-dev-f17e121fd055ba60d57a992702e59ae495faba76.zip
op-kernel-dev-f17e121fd055ba60d57a992702e59ae495faba76.tar.gz
remove useless tolower in isofs
Remove useless tolower in isofs Signed-off-by: dave young <hidave.darkstar@gmail.com> Acked-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/isofs')
-rw-r--r--fs/isofs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c
index 15c866f..4f5418b 100644
--- a/fs/isofs/inode.c
+++ b/fs/isofs/inode.c
@@ -197,7 +197,7 @@ isofs_hashi_common(struct dentry *dentry, struct qstr *qstr, int ms)
hash = init_name_hash();
while (len--) {
c = tolower(*name++);
- hash = partial_name_hash(tolower(c), hash);
+ hash = partial_name_hash(c, hash);
}
qstr->hash = end_name_hash(hash);
OpenPOWER on IntegriCloud