summaryrefslogtreecommitdiffstats
path: root/drivers/staging/fbtft/fb_ili9481.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2017-02-22 21:54:57 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-06 09:16:59 +0100
commit999c8c28a89f1c8a681be01964c7239c3cc2685d (patch)
treebc5b95182c884e8599dcc7f383b8874d97a7924f /drivers/staging/fbtft/fb_ili9481.c
parent0a859b31ec9c8bce9aacc9ccae3af6aab84b04c7 (diff)
downloadlinux-999c8c28a89f1c8a681be01964c7239c3cc2685d.tar.bz2
staging: fbtft: Make some s16 arrays const
Using const reduces data size. $ size drivers/staging/fbtft/built-in.o* text data bss dec hex filename 89909 41584 2928 134421 20d15 drivers/staging/fbtft/built-in.o.new 88053 43392 2928 134373 20ce5 drivers/staging/fbtft/built-in.o.old Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fbtft/fb_ili9481.c')
-rw-r--r--drivers/staging/fbtft/fb_ili9481.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fbtft/fb_ili9481.c b/drivers/staging/fbtft/fb_ili9481.c
index 4e75f5abe2f9..7f182a1c084c 100644
--- a/drivers/staging/fbtft/fb_ili9481.c
+++ b/drivers/staging/fbtft/fb_ili9481.c
@@ -27,7 +27,7 @@
#define WIDTH 320
#define HEIGHT 480
-static s16 default_init_sequence[] = {
+static const s16 default_init_sequence[] = {
/* SLP_OUT - Sleep out */
-1, MIPI_DCS_EXIT_SLEEP_MODE,
-2, 50,