diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-12-09 15:54:18 +1100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-09 08:24:38 -0800 |
commit | f3179748a157c21d44d929fd3779421ebfbeaa93 (patch) | |
tree | 7617077768413c830d80288b510da379ef181811 /drivers/video/aty/radeon_accel.c | |
parent | f7a8db89c1f42e504bb12d2ae399cd96f755a7db (diff) | |
download | kernel_samsung_smdk4412-f3179748a157c21d44d929fd3779421ebfbeaa93.zip kernel_samsung_smdk4412-f3179748a157c21d44d929fd3779421ebfbeaa93.tar.gz kernel_samsung_smdk4412-f3179748a157c21d44d929fd3779421ebfbeaa93.tar.bz2 |
radeonfb: Disable new color expand acceleration unless explicitely enabled
This new color expansion acceleration for radeonfb appears to trigger
problems with X on VT switch and suspend/resume on some machines. It
might be a problem in the VT layer or in X, but I haven't quite found
it yet, so in the meantime, this disables the acceleration by default,
reverting to 2.6.27 state. It can be enabled using the "accel_cexp"
module parameter or fbdev argument.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/aty/radeon_accel.c')
-rw-r--r-- | drivers/video/aty/radeon_accel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/aty/radeon_accel.c b/drivers/video/aty/radeon_accel.c index a547e5d..8da5e5a 100644 --- a/drivers/video/aty/radeon_accel.c +++ b/drivers/video/aty/radeon_accel.c @@ -256,7 +256,8 @@ void radeonfb_imageblit(struct fb_info *info, const struct fb_image *image) return; /* We only do 1 bpp color expansion for now */ - if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1) + if (!accel_cexp || + (info->flags & FBINFO_HWACCEL_DISABLED) || image->depth != 1) goto fallback; /* Fallback if running out of the screen. We may do clipping |