diff options
author | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2006-12-04 15:48:04 +0800 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2007-01-06 15:06:39 -0800 |
commit | 736d82a6b43f174cb95b425faacd4b0b889916fa (patch) | |
tree | 287256c97eef955a5b2f9a48986134ef24d01630 /src/i830_tv.c | |
parent | 53b42f5bc7a58d02106436486e5bb56e56dbbfa1 (diff) | |
parent | 4c790f614ecba1f6468e51779cfaf0e36b6b17ad (diff) |
Merge branch 'modesetting-origin' into modesetting
Diffstat (limited to 'src/i830_tv.c')
-rw-r--r-- | src/i830_tv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i830_tv.c b/src/i830_tv.c index 4a79d2e5..92e417e0 100644 --- a/src/i830_tv.c +++ b/src/i830_tv.c @@ -155,7 +155,7 @@ typedef struct { * These values account for -1s required. */ -const tv_mode_t tv_modes[] = { +const static tv_mode_t tv_modes[] = { { .name = "NTSC 480i", .oversample = TV_OVERSAMPLE_8X, @@ -1092,7 +1092,7 @@ i830_tv_get_modes(xf86OutputPtr output) { ScrnInfoPtr pScrn = output->scrn; I830Ptr pI830 = I830PTR(pScrn); - DisplayModePtr new, first = NULL, *tail = &first;; + DisplayModePtr new, first = NULL, *tail = &first; int i; (void) pI830; |