Blame view

drivers/video/wmt_ge_rops.h 583 Bytes
18a434b57   Tony Prisk   video: vt8500: Ma...
1
  #ifdef CONFIG_FB_WMT_GE_ROPS
d6ff7d0fe   Alexey Charkov   ARM: Add support ...
2
3
4
5
6
  extern void wmt_ge_fillrect(struct fb_info *info,
  			    const struct fb_fillrect *rect);
  extern void wmt_ge_copyarea(struct fb_info *info,
  			    const struct fb_copyarea *area);
  extern int wmt_ge_sync(struct fb_info *info);
18a434b57   Tony Prisk   video: vt8500: Ma...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  
  #else
  
  static inline int wmt_ge_sync(struct fb_info *p)
  {
  	return 0;
  }
  
  static inline void wmt_ge_fillrect(struct fb_info *p,
  				    const struct fb_fillrect *rect)
  {
  	sys_fillrect(p, rect);
  }
  
  static inline void wmt_ge_copyarea(struct fb_info *p,
  				     const struct fb_copyarea *area)
  {
  	sys_copyarea(p, area);
  }
  
  #endif