diff options
author | Anthony DeStefano <adx@fastmail.fm> | 2014-06-19 21:53:21 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-04 15:11:27 -0400 |
commit | 7e49027e62b9cb8addcd00f7498d389469f119d4 (patch) | |
tree | d05601a82b072134fda7be21589e1360378f7289 | |
parent | c0e11a2a24db782341f456877d19b9390c5998a9 (diff) |
[media] staging: solo6x10: fix for sparse warning message
Define jpeg_dqt as static.
Signed-off-by: Anthony DeStefano <adx@fastmail.fm>
Signed-off-by: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/staging/media/solo6x10/solo6x10-jpeg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/solo6x10/solo6x10-jpeg.h b/drivers/staging/media/solo6x10/solo6x10-jpeg.h index c5218ceeabca..9e411857d6f7 100644 --- a/drivers/staging/media/solo6x10/solo6x10-jpeg.h +++ b/drivers/staging/media/solo6x10/solo6x10-jpeg.h | |||
@@ -110,7 +110,7 @@ static const unsigned char jpeg_header[] = { | |||
110 | /* This is the byte marker for the start of the DQT */ | 110 | /* This is the byte marker for the start of the DQT */ |
111 | #define DQT_START 17 | 111 | #define DQT_START 17 |
112 | #define DQT_LEN 138 | 112 | #define DQT_LEN 138 |
113 | const unsigned char jpeg_dqt[4][DQT_LEN] = { | 113 | static const unsigned char jpeg_dqt[4][DQT_LEN] = { |
114 | { | 114 | { |
115 | 0xff, 0xdb, 0x00, 0x43, 0x00, | 115 | 0xff, 0xdb, 0x00, 0x43, 0x00, |
116 | 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, | 116 | 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, |