1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * omap_fbdev.h -- OMAP DRM FBDEV Compatibility
5 * Copyright (C) 2011 Texas Instruments
9 #ifndef __OMAPDRM_FBDEV_H__
10 #define __OMAPDRM_FBDEV_H__
14 struct drm_fb_helper_surface_size;
16 #ifdef CONFIG_DRM_FBDEV_EMULATION
17 int omap_fbdev_driver_fbdev_probe(struct drm_fb_helper *helper,
18 struct drm_fb_helper_surface_size *sizes);
19 #define OMAP_FBDEV_DRIVER_OPS \
20 .fbdev_probe = omap_fbdev_driver_fbdev_probe
21 void omap_fbdev_setup(struct drm_device *dev);
23 #define OMAP_FBDEV_DRIVER_OPS \
25 static inline void omap_fbdev_setup(struct drm_device *dev)
30 #endif /* __OMAPDRM_FBDEV_H__ */