diff options
author | Jani Nikula <jani.nikula@intel.com> | 2021-11-22 14:15:04 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2021-11-23 14:11:42 +0300 |
commit | 617ed6c2f0365a62f21936449ca1701937027339 (patch) | |
tree | 87e2bdc8e6f16f68bdf58b971f8929dce6b9e2ca /drivers/gpu/drm/i915/display/icl_dsi.h | |
parent | 7570d06db73f9e5a97cb55bcdfcc3b15f6f46b9b (diff) | |
download | linux-617ed6c2f0365a62f21936449ca1701937027339.tar.xz |
drm/i915/dsi: split out icl_dsi.h
Follow the convention of corresponding .h for .c.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211122111504.223248-4-jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/display/icl_dsi.h')
-rw-r--r-- | drivers/gpu/drm/i915/display/icl_dsi.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/display/icl_dsi.h b/drivers/gpu/drm/i915/display/icl_dsi.h new file mode 100644 index 000000000000..b4861b56b5b2 --- /dev/null +++ b/drivers/gpu/drm/i915/display/icl_dsi.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2021 Intel Corporation + */ + +#ifndef __ICL_DSI_H__ +#define __ICL_DSI_H__ + +struct drm_i915_private; +struct intel_crtc_state; + +void icl_dsi_init(struct drm_i915_private *i915); +void icl_dsi_frame_update(struct intel_crtc_state *crtc_state); + +#endif /* __ICL_DSI_H__ */ |