mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-19 07:27:50 +00:00
fb: hide hardware cursor in graphics mode (Mach64)
A hardware cursor is left enabled in the fb_set_par() which is called when a new console is created. This is inconsistent with software cursor's behaviour. Also, this makes a hardware cursor always visible in the Xfbdev (Xorg kdrive) server. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Cc: Risto Suominen <risto.suominen@gmail.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
98da329581
commit
84d9077b33
@ -39,7 +39,8 @@ void aty_reset_engine(const struct atyfb_par *par)
|
||||
{
|
||||
/* reset engine */
|
||||
aty_st_le32(GEN_TEST_CNTL,
|
||||
aty_ld_le32(GEN_TEST_CNTL, par) & ~GUI_ENGINE_ENABLE, par);
|
||||
aty_ld_le32(GEN_TEST_CNTL, par) &
|
||||
~(GUI_ENGINE_ENABLE | HWCURSOR_ENABLE), par);
|
||||
/* enable engine */
|
||||
aty_st_le32(GEN_TEST_CNTL,
|
||||
aty_ld_le32(GEN_TEST_CNTL, par) | GUI_ENGINE_ENABLE, par);
|
||||
|
Loading…
Reference in New Issue
Block a user