media: gspca: make the read-only array table static const
authorColin Ian King <colin.i.king@gmail.com>
Mon, 7 Mar 2022 22:42:47 +0000 (23:42 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 13 May 2022 09:02:17 +0000 (11:02 +0200)
Don't populate the read-only array table on the stack but
instead make it static const. Also makes the object code a little
smaller.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/usb/gspca/spca561.c

index d608a51..431527e 100644 (file)
@@ -510,7 +510,7 @@ static void setexposure(struct gspca_dev *gspca_dev, s32 val)
        /* We choose to use the high bits setting the fixed framerate divisor
           asap, as setting high basic exposure setting without the fixed
           divider in combination with high gains makes the cam stop */
-       int table[] =  { 0, 450, 550, 625, EXPOSURE_MAX };
+       static const int table[] =  { 0, 450, 550, 625, EXPOSURE_MAX };
 
        for (i = 0; i < ARRAY_SIZE(table) - 1; i++) {
                if (val <= table[i + 1]) {