2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-26 06:04:14 +08:00

[media] gspca - ov519: Reduce the size of some variables

Signed-off-by: Jean-François Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Jean-François Moine 2010-11-11 08:05:50 -03:00 committed by Mauro Carvalho Chehab
parent 9d1593a84c
commit d6fa66384b

View File

@ -124,9 +124,9 @@ struct sd {
#define SEN_OV8610 13
u8 sensor_addr;
int sensor_width;
int sensor_height;
int sensor_reg_cache[256];
u16 sensor_width;
u16 sensor_height;
s16 sensor_reg_cache[256];
u8 jpeg_hdr[JPEG_HDR_SZ];
};