mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 12:16:41 +00:00
20 lines
404 B
C
20 lines
404 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef DRM_FBDEV_CLIENT_H
|
||
|
#define DRM_FBDEV_CLIENT_H
|
||
|
|
||
|
struct drm_device;
|
||
|
struct drm_format_info;
|
||
|
|
||
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
||
|
int drm_fbdev_client_setup(struct drm_device *dev, const struct drm_format_info *format);
|
||
|
#else
|
||
|
static inline int drm_fbdev_client_setup(struct drm_device *dev,
|
||
|
const struct drm_format_info *format)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|