Home
last modified time | relevance | path

Searched refs:fbcursor (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/staging/sm750fb/
Dsm750.c129 static int lynxfb_ops_cursor(struct fb_info *info, struct fb_cursor *fbcursor) in lynxfb_ops_cursor() argument
139 if (fbcursor->image.width > cursor->maxW || in lynxfb_ops_cursor()
140 fbcursor->image.height > cursor->maxH || in lynxfb_ops_cursor()
141 fbcursor->image.depth > 1) { in lynxfb_ops_cursor()
146 if (fbcursor->set & FB_CUR_SETSIZE) in lynxfb_ops_cursor()
148 fbcursor->image.width, in lynxfb_ops_cursor()
149 fbcursor->image.height); in lynxfb_ops_cursor()
151 if (fbcursor->set & FB_CUR_SETPOS) in lynxfb_ops_cursor()
153 fbcursor->image.dx - info->var.xoffset, in lynxfb_ops_cursor()
154 fbcursor->image.dy - info->var.yoffset); in lynxfb_ops_cursor()
[all …]
/linux-4.1.27/arch/sparc/include/uapi/asm/
Dfbio.h96 struct fbcursor { struct
108 #define FBIOSCURSOR _IOW('F', 24, struct fbcursor) argument
109 #define FBIOGCURSOR _IOWR('F', 25, struct fbcursor)
/linux-4.1.27/arch/m68k/include/asm/
Dfbio.h99 struct fbcursor { struct
111 #define FBIOSCURSOR _IOW('F', 24, struct fbcursor) argument
112 #define FBIOGCURSOR _IOWR('F', 25, struct fbcursor)
/linux-4.1.27/drivers/video/fbdev/
Dsbuslib.c218 struct fbcursor __user *p = compat_alloc_user_space(sizeof(*p)); in fbiogscursor()