This source file includes following definitions.
- omap_fbdev_init
- omap_fbdev_fini
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 #ifndef __OMAPDRM_FBDEV_H__
  10 #define __OMAPDRM_FBDEV_H__
  11 
  12 struct drm_device;
  13 struct drm_fb_helper;
  14 
  15 #ifdef CONFIG_DRM_FBDEV_EMULATION
  16 void omap_fbdev_init(struct drm_device *dev);
  17 void omap_fbdev_fini(struct drm_device *dev);
  18 #else
  19 static inline void omap_fbdev_init(struct drm_device *dev)
  20 {
  21 }
  22 static inline void omap_fbdev_fini(struct drm_device *dev)
  23 {
  24 }
  25 #endif
  26 
  27 #endif