Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.11-rc1 15 lines 341 B view raw
1/* SPDX-License-Identifier: MIT */ 2 3#ifndef DRM_FBDEV_SHMEM_H 4#define DRM_FBDEV_SHMEM_H 5 6struct drm_device; 7 8#ifdef CONFIG_DRM_FBDEV_EMULATION 9void drm_fbdev_shmem_setup(struct drm_device *dev, unsigned int preferred_bpp); 10#else 11static inline void drm_fbdev_shmem_setup(struct drm_device *dev, unsigned int preferred_bpp) 12{ } 13#endif 14 15#endif