xref: /linux/include/drm/drm_fbdev_ttm.h (revision 7d32e779eb9add47bfdb4731c4d4ff443a7f7fa6)
1 /* SPDX-License-Identifier: MIT */
2 
3 #ifndef DRM_FBDEV_TTM_H
4 #define DRM_FBDEV_TTM_H
5 
6 struct drm_device;
7 
8 #ifdef CONFIG_DRM_FBDEV_EMULATION
9 void drm_fbdev_ttm_setup(struct drm_device *dev, unsigned int preferred_bpp);
10 #else
11 static inline void drm_fbdev_ttm_setup(struct drm_device *dev, unsigned int preferred_bpp)
12 { }
13 #endif
14 
15 #endif
16