aboutsummaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorManuel Schölling <[email protected]>2014-06-06 14:36:38 -0700
committerLinus Torvalds <[email protected]>2014-06-06 16:08:11 -0700
commitef19470ef87d06ed906e2fbb6c9aeb7aaa9acc56 (patch)
treedfc734082af8331d2ab8a4c05e96c250ebc87c07 /include/linux
parent190a8843ded231638d0e7ae7d8ca6a712472d114 (diff)
fs/fat/inode.c: clean up string initializations (char[] instead of char *)
Initializations like 'char *foo = "bar"' will create two variables: a static string and a pointer (foo) to that static string. Instead 'char foo[] = "bar"' will declare a single variable and will end up in shorter assembly (according to Jeff Garzik on the KernelJanitor's TODO list). Signed-off-by: Manuel Schölling <[email protected]> Acked-by: OGAWA Hirofumi <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
0 files changed, 0 insertions, 0 deletions