Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * omap_fbdev.h -- OMAP DRM FBDEV Compatibility
0004  *
0005  * Copyright (C) 2011 Texas Instruments
0006  * Author: Rob Clark <rob@ti.com>
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 /* __OMAPDRM_FBDEV_H__ */