Skip to content

Commit

Permalink
[PATCH] intelfb: fix accel detection when changing video modes
Browse files Browse the repository at this point in the history
Changed the tests in intelfb_set_par to check also the parameter
var.accel_flags.  If null, do nothing about ring buffers.

Now, the DirectFB i830 driver could nicely work even if intelfb is hw
accelerated.  Just change the /etc/fb.modes file to disable console hw
acceleration when starting a DirectFB app.

Signed-off-by: Sylvain Meyer <sylvain.meyer@worldonline.fr>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Sylvain Meyer authored and Linus Torvalds committed Jun 22, 2005
1 parent 27aef2d commit df52933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/intelfb/intelfbdrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ intelfb_set_par(struct fb_info *info)

intelfb_blank(FB_BLANK_POWERDOWN, info);

if (dinfo->accel)
if (ACCEL(dinfo, info))
intelfbhw_2d_stop(dinfo);

memcpy(hw, &dinfo->save_state, sizeof(*hw));
Expand All @@ -1317,7 +1317,7 @@ intelfb_set_par(struct fb_info *info)

update_dinfo(dinfo, &info->var);

if (dinfo->accel)
if (ACCEL(dinfo, info))
intelfbhw_2d_start(dinfo);

intelfb_pan_display(&info->var, info);
Expand Down

0 comments on commit df52933

Please sign in to comment.