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