Home
last modified time | relevance | path

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

/linux/drivers/video/fbdev/core/
H A Dfbcon.c1026 cols = FBCON_SWAP(par->rotate, info->var.xres, info->var.yres); in fbcon_startup()
1027 rows = FBCON_SWAP(par->rotate, info->var.yres, info->var.xres); in fbcon_startup()
1133 new_cols = FBCON_SWAP(par->rotate, info->var.xres, info->var.yres); in fbcon_init()
1134 new_rows = FBCON_SWAP(par->rotate, info->var.yres, info->var.xres); in fbcon_init()
1443 cols = FBCON_SWAP(par->rotate, info->var.xres, info->var.yres); in fbcon_set_disp()
1444 rows = FBCON_SWAP(par->rotate, info->var.yres, info->var.xres); in fbcon_set_disp()
1988 int ypan = FBCON_SWAP(par->rotate, info->fix.ypanstep, info->fix.xpanstep); in updatescrollmode_accel()
1989 int ywrap = FBCON_SWAP(par->rotate, info->fix.ywrapstep, t); in updatescrollmode_accel()
1990 int yres = FBCON_SWAP(par->rotate, info->var.yres, info->var.xres); in updatescrollmode_accel()
1991 int vyres = FBCON_SWAP(par->rotate, info->var.yres_virtual, info->var.xres_virtual); in updatescrollmode_accel()
[all …]
H A Dfbcon.h224 #define FBCON_SWAP(i,r,v) ({ \ macro