ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
21 lines
475 B
C
21 lines
475 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef DRM_FBDEV_SHMEM_H
|
|
#define DRM_FBDEV_SHMEM_H
|
|
|
|
struct drm_fb_helper;
|
|
struct drm_fb_helper_surface_size;
|
|
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
|
int drm_fbdev_shmem_driver_fbdev_probe(struct drm_fb_helper *fb_helper,
|
|
struct drm_fb_helper_surface_size *sizes);
|
|
|
|
#define DRM_FBDEV_SHMEM_DRIVER_OPS \
|
|
.fbdev_probe = drm_fbdev_shmem_driver_fbdev_probe
|
|
#else
|
|
#define DRM_FBDEV_SHMEM_DRIVER_OPS \
|
|
.fbdev_probe = NULL
|
|
#endif
|
|
|
|
#endif
|