23 lines
446 B
C
Raw Normal View History

2026-01-21 18:59:54 +08: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
2026-01-29 22:25:33 +08:00
void omap_fbdev_setup(struct drm_device *dev);
2026-01-21 18:59:54 +08:00
#else
2026-01-29 22:25:33 +08:00
static inline void omap_fbdev_setup(struct drm_device *dev)
2026-01-21 18:59:54 +08:00
{
}
#endif
#endif /* __OMAPDRM_FBDEV_H__ */