Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] saa6752hs build fix

For older gcc's.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Andrew Morton and committed by
Linus Torvalds
558ac33e cafdd8ba

+5 -5
+5 -5
drivers/media/video/saa7134/saa6752hs.c
··· 43 43 static const struct v4l2_format v4l2_format_table[] = 44 44 { 45 45 [SAA6752HS_VF_D1] = { 46 - .fmt.pix.width = 720, .fmt.pix.height = 576 }, 46 + .fmt = { .pix = { .width = 720, .height = 576 }, }, }, 47 47 [SAA6752HS_VF_2_3_D1] = { 48 - .fmt.pix.width = 480, .fmt.pix.height = 576 }, 48 + .fmt = { .pix = { .width = 480, .height = 576 }, }, }, 49 49 [SAA6752HS_VF_1_2_D1] = { 50 - .fmt.pix.width = 352, .fmt.pix.height = 576 }, 50 + .fmt = { .pix = { .width = 352, .height = 576 }, }, }, 51 51 [SAA6752HS_VF_SIF] = { 52 - .fmt.pix.width = 352, .fmt.pix.height = 288 }, 52 + .fmt = { .pix = { .width = 352, .height = 288 }, }, }, 53 53 [SAA6752HS_VF_UNKNOWN] = { 54 - .fmt.pix.width = 0, .fmt.pix.height = 0}, 54 + .fmt = { .pix = { .width = 0, .height = 0 }, }, }, 55 55 }; 56 56 57 57 struct saa6752hs_state {