提交 558ac33e 编写于 作者: A Andrew Morton 提交者: Linus Torvalds

[PATCH] saa6752hs build fix

For older gcc's.
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 cafdd8ba
...@@ -43,15 +43,15 @@ enum saa6752hs_videoformat { ...@@ -43,15 +43,15 @@ enum saa6752hs_videoformat {
static const struct v4l2_format v4l2_format_table[] = static const struct v4l2_format v4l2_format_table[] =
{ {
[SAA6752HS_VF_D1] = { [SAA6752HS_VF_D1] = {
.fmt.pix.width = 720, .fmt.pix.height = 576 }, .fmt = { .pix = { .width = 720, .height = 576 }, }, },
[SAA6752HS_VF_2_3_D1] = { [SAA6752HS_VF_2_3_D1] = {
.fmt.pix.width = 480, .fmt.pix.height = 576 }, .fmt = { .pix = { .width = 480, .height = 576 }, }, },
[SAA6752HS_VF_1_2_D1] = { [SAA6752HS_VF_1_2_D1] = {
.fmt.pix.width = 352, .fmt.pix.height = 576 }, .fmt = { .pix = { .width = 352, .height = 576 }, }, },
[SAA6752HS_VF_SIF] = { [SAA6752HS_VF_SIF] = {
.fmt.pix.width = 352, .fmt.pix.height = 288 }, .fmt = { .pix = { .width = 352, .height = 288 }, }, },
[SAA6752HS_VF_UNKNOWN] = { [SAA6752HS_VF_UNKNOWN] = {
.fmt.pix.width = 0, .fmt.pix.height = 0}, .fmt = { .pix = { .width = 0, .height = 0 }, }, },
}; };
struct saa6752hs_state { struct saa6752hs_state {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册