omap_fbdev.h 575 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * omap_fbdev.h -- OMAP DRM FBDEV Compatibility
  4. *
  5. * Copyright (C) 2011 Texas Instruments
  6. * Author: Rob Clark <[email protected]>
  7. */
  8. #ifndef __OMAPDRM_FBDEV_H__
  9. #define __OMAPDRM_FBDEV_H__
  10. struct drm_device;
  11. struct drm_fb_helper;
  12. #ifdef CONFIG_DRM_FBDEV_EMULATION
  13. void omap_fbdev_init(struct drm_device *dev);
  14. void omap_fbdev_fini(struct drm_device *dev);
  15. #else
  16. static inline void omap_fbdev_init(struct drm_device *dev)
  17. {
  18. }
  19. static inline void omap_fbdev_fini(struct drm_device *dev)
  20. {
  21. }
  22. #endif
  23. #endif /* __OMAPDRM_FBDEV_H__ */