summaryrefslogtreecommitdiff
path: root/public.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2010-11-19 11:04:15 +0100
committerTobias Klauser <tklauser@distanz.ch>2010-11-19 11:04:15 +0100
commit2118e12769269464a0a4b2c79aa7939289bebeb1 (patch)
tree27282d9c4d67e5c901c8c720a9c17868eebc5211 /public.h
parent44d32d23a7e5cd6b86f869f23eae60cc204ba2d0 (diff)
Simulator updates
Diffstat (limited to 'public.h')
0 files changed, 0 insertions, 0 deletions
2=190a8843ded231638d0e7ae7d8ca6a712472d114'>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 <manuel.schoelling@gmx.de> 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>
Diffstat (limited to 'Documentation/SubmittingPatches')