mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-09-11 00:02:01 +08:00
16 lines
349 B
C
16 lines
349 B
C
/* SPDX-License-Identifier: MIT */
|
|||
|
|
|
||
|
|
#ifndef DRM_FBDEV_GENERIC_H
|
||
|
|
#define DRM_FBDEV_GENERIC_H
|
||
|
|
|
||
|
|
struct drm_device;
|
||
|
|
|
||
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
||
|
|
void drm_fbdev_generic_setup(struct drm_device *dev, unsigned int preferred_bpp);
|
||
|
|
#else
|
||
|
|
static inline void drm_fbdev_generic_setup(struct drm_device *dev, unsigned int preferred_bpp)
|
||
|
|
{ }
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|