diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-04-04 13:11:05 -0700 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-04-04 13:11:05 -0700 |
commit | c44d8c5414c84a6fcdfc09bcc4ffd3fc6352e6e1 (patch) | |
tree | 14def200809138abf8d23dda8727fc1acb760231 | |
parent | 83912a99f13aa9f9f4e13ce2a393734658da9cd2 (diff) | |
download | mediapointer-dvb-s2-c44d8c5414c84a6fcdfc09bcc4ffd3fc6352e6e1.tar.gz mediapointer-dvb-s2-c44d8c5414c84a6fcdfc09bcc4ffd3fc6352e6e1.tar.bz2 |
sn9c102: declare constant byte sequences as static const
From: Trent Piepho <xyzzy@speakeasy.org>
Makes sure they don't get copied onto the stack.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Acked-by: Luca Risolia <luca.risolia@studio.unibo.it>
-rw-r--r-- | linux/drivers/media/video/sn9c102/sn9c102_core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/sn9c102/sn9c102_core.c b/linux/drivers/media/video/sn9c102/sn9c102_core.c index 72e13f3c3..c124916f1 100644 --- a/linux/drivers/media/video/sn9c102/sn9c102_core.c +++ b/linux/drivers/media/video/sn9c102/sn9c102_core.c @@ -499,7 +499,7 @@ static size_t sn9c102_sof_length(struct sn9c102_device* cam) static void* sn9c102_find_sof_header(struct sn9c102_device* cam, void* mem, size_t len) { - const char marker[6] = {0xff, 0xff, 0x00, 0xc4, 0xc4, 0x96}; + static const char marker[6] = {0xff, 0xff, 0x00, 0xc4, 0xc4, 0x96}; const char *m = mem; size_t soflen = 0, i, j; @@ -544,7 +544,7 @@ sn9c102_find_sof_header(struct sn9c102_device* cam, void* mem, size_t len) static void* sn9c102_find_eof_header(struct sn9c102_device* cam, void* mem, size_t len) { - char eof_header[4][4] = { + static const u8 eof_header[4][4] = { {0x00, 0x00, 0x00, 0x00}, {0x40, 0x00, 0x00, 0x00}, {0x80, 0x00, 0x00, 0x00}, @@ -574,7 +574,7 @@ sn9c102_find_eof_header(struct sn9c102_device* cam, void* mem, size_t len) static void sn9c102_write_jpegheader(struct sn9c102_device* cam, struct sn9c102_frame_t* f) { - static u8 jpeg_header[589] = { + static const u8 jpeg_header[589] = { 0xff, 0xd8, 0xff, 0xdb, 0x00, 0x84, 0x00, 0x06, 0x04, 0x05, 0x06, 0x05, 0x04, 0x06, 0x06, 0x05, 0x06, 0x07, 0x07, 0x06, 0x08, 0x0a, 0x10, 0x0a, 0x0a, 0x09, 0x09, 0x0a, 0x14, 0x0e, |