Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/video/fbdev/core/
Dfbcon.c1004 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_startup()
1005 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); in fbcon_startup()
1110 new_cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_init()
1111 new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); in fbcon_init()
1401 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres); in fbcon_set_disp()
1402 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); in fbcon_set_disp()
1956 int yres = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres); in updatescrollmode()
1957 int vyres = FBCON_SWAP(ops->rotate, info->var.yres_virtual, in updatescrollmode()
1997 virt_w = FBCON_SWAP(ops->rotate, width, height); in fbcon_resize()
1998 virt_h = FBCON_SWAP(ops->rotate, height, width); in fbcon_resize()
[all …]
Dfbcon.h246 #define FBCON_SWAP(i,r,v) ({ \ macro