mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
16 lines
333 B
C
16 lines
333 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef DRM_FBDEV_DMA_H
|
||
|
#define DRM_FBDEV_DMA_H
|
||
|
|
||
|
struct drm_device;
|
||
|
|
||
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
||
|
void drm_fbdev_dma_setup(struct drm_device *dev, unsigned int preferred_bpp);
|
||
|
#else
|
||
|
static inline void drm_fbdev_dma_setup(struct drm_device *dev, unsigned int preferred_bpp)
|
||
|
{ }
|
||
|
#endif
|
||
|
|
||
|
#endif
|