diff options
author | Keith Packard <keithp@guitar.keithp.com> | 2006-11-19 00:54:30 -0800 |
---|---|---|
committer | Keith Packard <keithp@guitar.keithp.com> | 2006-11-19 00:54:30 -0800 |
commit | b945a650e952f98c2d101b71bd3ec0f390478da5 (patch) | |
tree | 1b4c6cce56a48883c4dfa6b34d86f8277bbf80c4 /src/i810_reg.h | |
parent | 28224af3d90a1a08d54a865dfaf20184330fe8a4 (diff) |
Fix TV color key.
Subcarrier defines were incorrect in header file leaving one of the
DDA phases disabled.
Diffstat (limited to 'src/i810_reg.h')
-rw-r--r-- | src/i810_reg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i810_reg.h b/src/i810_reg.h index a61bc6b6..53a063fc 100644 --- a/src/i810_reg.h +++ b/src/i810_reg.h @@ -1409,9 +1409,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /** Turns on the first subcarrier phase generation DDA */ # define TV_SC_DDA1_EN (1 << 31) /** Turns on the first subcarrier phase generation DDA */ -# define TV_SC_DDA2_EN (2 << 31) +# define TV_SC_DDA2_EN (1 << 30) /** Turns on the first subcarrier phase generation DDA */ -# define TV_SC_DDA3_EN (3 << 31) +# define TV_SC_DDA3_EN (1 << 29) /** Sets the subcarrier DDA to reset frequency every other field */ # define TV_SC_RESET_EVERY_2 (0 << 24) /** Sets the subcarrier DDA to reset frequency every fourth field */ |