Home
last modified time | relevance | path

Searched refs:FBCON_SWAP (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/drivers/video/fbdev/core/
H A Dfbcon.c992 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_startup()
993 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); in fbcon_startup()
1406 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_set_disp()
1958 int ypan = FBCON_SWAP(ops->rotate, info->fix.ypanstep, in updatescrollmode_accel()
1960 int ywrap = FBCON_SWAP(ops->rotate, info->fix.ywrapstep, t); in updatescrollmode_accel()
1962 int vyres = FBCON_SWAP(ops->rotate, info->var.yres_virtual, in updatescrollmode_accel()
1999 int vyres = FBCON_SWAP(ops->rotate, info->var.yres_virtual, in updatescrollmode()
2042 virt_w = FBCON_SWAP(ops->rotate, width, height); in fbcon_resize()
2043 virt_h = FBCON_SWAP(ops->rotate, height, width); in fbcon_resize()
2044 virt_fw = FBCON_SWAP(ops->rotate, vc->vc_font.width, in fbcon_resize()
[all …]
H A Dfbcon.h221 #define FBCON_SWAP(i,r,v) ({ \ macro