diff options
-rw-r--r-- | drivers/video/console/fbcon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index f05afc02de2a..4f6fc785e95f 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c | |||
@@ -1965,7 +1965,8 @@ static __inline__ void updatescrollmode(struct display *p, | |||
1965 | divides(ypan, vc->vc_font.height) && vyres > yres; | 1965 | divides(ypan, vc->vc_font.height) && vyres > yres; |
1966 | int good_wrap = (cap & FBINFO_HWACCEL_YWRAP) && | 1966 | int good_wrap = (cap & FBINFO_HWACCEL_YWRAP) && |
1967 | divides(ywrap, vc->vc_font.height) && | 1967 | divides(ywrap, vc->vc_font.height) && |
1968 | divides(vc->vc_font.height, vyres); | 1968 | divides(vc->vc_font.height, vyres) && |
1969 | divides(vc->vc_font.height, yres); | ||
1969 | int reading_fast = cap & FBINFO_READS_FAST; | 1970 | int reading_fast = cap & FBINFO_READS_FAST; |
1970 | int fast_copyarea = (cap & FBINFO_HWACCEL_COPYAREA) && | 1971 | int fast_copyarea = (cap & FBINFO_HWACCEL_COPYAREA) && |
1971 | !(cap & FBINFO_HWACCEL_DISABLED); | 1972 | !(cap & FBINFO_HWACCEL_DISABLED); |