msm_connector.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (C) 2013 Red Hat
  3. * Author: Rob Clark <robdclark@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published by
  7. * the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include "msm_drv.h"
  18. #include "msm_connector.h"
  19. void msm_connector_init(struct msm_connector *connector,
  20. const struct msm_connector_funcs *funcs,
  21. struct drm_encoder *encoder)
  22. {
  23. connector->funcs = funcs;
  24. connector->encoder = encoder;
  25. }
  26. struct drm_encoder *msm_connector_attached_encoder(
  27. struct drm_connector *connector)
  28. {
  29. struct msm_connector *msm_connector = to_msm_connector(connector);
  30. return msm_connector->encoder;
  31. }