linux-zen-desktop/drivers/gpu/drm/omapdrm/omap_fbdev.h

23 lines
446 B
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* omap_fbdev.h -- OMAP DRM FBDEV Compatibility
*
* Copyright (C) 2011 Texas Instruments
* Author: Rob Clark <rob@ti.com>
*/
#ifndef __OMAPDRM_FBDEV_H__
#define __OMAPDRM_FBDEV_H__
struct drm_device;
#ifdef CONFIG_DRM_FBDEV_EMULATION
2023-10-24 12:59:35 +02:00
void omap_fbdev_setup(struct drm_device *dev);
2023-08-30 17:31:07 +02:00
#else
2023-10-24 12:59:35 +02:00
static inline void omap_fbdev_setup(struct drm_device *dev)
2023-08-30 17:31:07 +02:00
{
}
#endif
#endif /* __OMAPDRM_FBDEV_H__ */