1
0
Fork 0
linux/include/drm/drm_fbdev_shmem.h
Daniel Baumann 79d69e5050
Adding upstream version 6.12.33.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 12:14:28 +02:00

15 lines
341 B
C

/* SPDX-License-Identifier: MIT */
#ifndef DRM_FBDEV_SHMEM_H
#define DRM_FBDEV_SHMEM_H
struct drm_device;
#ifdef CONFIG_DRM_FBDEV_EMULATION
void drm_fbdev_shmem_setup(struct drm_device *dev, unsigned int preferred_bpp);
#else
static inline void drm_fbdev_shmem_setup(struct drm_device *dev, unsigned int preferred_bpp)
{ }
#endif
#endif