hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
kernel/drivers/video/fbdev/core/fbcon_rotate.h
....@@ -12,11 +12,11 @@
1212 #define _FBCON_ROTATE_H
1313
1414 #define GETVYRES(s,i) ({ \
15
- (s == SCROLL_REDRAW || s == SCROLL_MOVE) ? \
15
+ (fb_scrollmode(s) == SCROLL_REDRAW || fb_scrollmode(s) == SCROLL_MOVE) ? \
1616 (i)->var.yres : (i)->var.yres_virtual; })
1717
1818 #define GETVXRES(s,i) ({ \
19
- (s == SCROLL_REDRAW || s == SCROLL_MOVE || !(i)->fix.xpanstep) ? \
19
+ (fb_scrollmode(s) == SCROLL_REDRAW || fb_scrollmode(s) == SCROLL_MOVE || !(i)->fix.xpanstep) ? \
2020 (i)->var.xres : (i)->var.xres_virtual; })
2121
2222