lib/string_helpers.c: constify static arrays
authorMathias Krause <[email protected]>
Wed, 6 Aug 2014 23:09:31 +0000 (16:09 -0700)
committerLinus Torvalds <[email protected]>
Thu, 7 Aug 2014 01:01:25 +0000 (18:01 -0700)
commit142cda5dbcb0dc3738c079f591290d6384261c73
tree8ce718779711e5f3be803a86cea30de90963c251
parente004f3c7780de32fa822f292ebadd985bcadb1e0
lib/string_helpers.c: constify static arrays

Complement commit 68aecfb97978 ("lib/string_helpers.c: make arrays
static") by making the arrays const -- not only pointing to const
strings.  This moves them out of the data section to the r/o data
section:

   text    data     bss     dec     hex filename
   1150     176       0    1326     52e lib/string_helpers.old.o
   1326       0       0    1326     52e lib/string_helpers.new.o

Signed-off-by: Mathias Krause <[email protected]>
Cc: James Bottomley <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
lib/string_helpers.c