Linux 6.7-rc7
[linux-modified.git] / include / drm / drm_fbdev_dma.h
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