diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2016-02-21 20:55:34 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-02-26 06:06:11 -0500 |
commit | e29f0d55e2b98f630d86892688a00a9d820b9989 (patch) | |
tree | b53bcefd99da697359b86e9b379bbd890ef2cf03 /drivers/video/fbdev | |
parent | 5832706e8b50bab3fce1b4bad62b356554b851e4 (diff) |
video: fbdev: bt431: Correct cursor format control macro
The Bt431 cursor generator supports simultaneous generation of a 64 x 64
and a cross hair cursor in which the cursor format control bit (bit D4)
of the command register "specifies whether the contents of the cursor
RAM are to be logically exclusive-ORed (logical zero) or ORed (logical
one) with the cross hair cursor". Rename the relevant macro accordingly.
References:
[1] "Bt431 Monolithic CMOS 64 x 64 Pixel Cursor Generator", Brooktree
Corporation, Document Number: L431001, Rev. J
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev')
-rw-r--r-- | drivers/video/fbdev/bt431.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/bt431.h b/drivers/video/fbdev/bt431.h index 108fab39fd78..3929602f5867 100644 --- a/drivers/video/fbdev/bt431.h +++ b/drivers/video/fbdev/bt431.h | |||
@@ -63,7 +63,7 @@ static inline u8 bt431_get_value(u16 val) | |||
63 | #define BT431_CMD_CURS_ENABLE 0x40 | 63 | #define BT431_CMD_CURS_ENABLE 0x40 |
64 | #define BT431_CMD_XHAIR_ENABLE 0x20 | 64 | #define BT431_CMD_XHAIR_ENABLE 0x20 |
65 | #define BT431_CMD_OR_CURSORS 0x10 | 65 | #define BT431_CMD_OR_CURSORS 0x10 |
66 | #define BT431_CMD_AND_CURSORS 0x00 | 66 | #define BT431_CMD_XOR_CURSORS 0x00 |
67 | #define BT431_CMD_1_1_MUX 0x00 | 67 | #define BT431_CMD_1_1_MUX 0x00 |
68 | #define BT431_CMD_4_1_MUX 0x04 | 68 | #define BT431_CMD_4_1_MUX 0x04 |
69 | #define BT431_CMD_5_1_MUX 0x08 | 69 | #define BT431_CMD_5_1_MUX 0x08 |