shmob_drm_backlight.h 560 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * shmob_drm_backlight.h -- SH Mobile DRM Backlight
  4. *
  5. * Copyright (C) 2012 Renesas Electronics Corporation
  6. *
  7. * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
  8. */
  9. #ifndef __SHMOB_DRM_BACKLIGHT_H__
  10. #define __SHMOB_DRM_BACKLIGHT_H__
  11. struct shmob_drm_connector;
  12. void shmob_drm_backlight_dpms(struct shmob_drm_connector *scon, int mode);
  13. int shmob_drm_backlight_init(struct shmob_drm_connector *scon);
  14. void shmob_drm_backlight_exit(struct shmob_drm_connector *scon);
  15. #endif /* __SHMOB_DRM_BACKLIGHT_H__ */