0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef __OMAPDRM_FBDEV_H__
0010 #define __OMAPDRM_FBDEV_H__
0011
0012 struct drm_device;
0013 struct drm_fb_helper;
0014
0015 #ifdef CONFIG_DRM_FBDEV_EMULATION
0016 void omap_fbdev_init(struct drm_device *dev);
0017 void omap_fbdev_fini(struct drm_device *dev);
0018 #else
0019 static inline void omap_fbdev_init(struct drm_device *dev)
0020 {
0021 }
0022 static inline void omap_fbdev_fini(struct drm_device *dev)
0023 {
0024 }
0025 #endif
0026
0027 #endif