File tree Expand file tree Collapse file tree 5 files changed +18
-6
lines changed
drivers/gpu/drm/i915/display Expand file tree Collapse file tree 5 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 28
28
#include <drm/drm_atomic_helper.h>
29
29
#include <drm/drm_mipi_dsi.h>
30
30
31
+ #include "icl_dsi.h"
31
32
#include "intel_atomic.h"
32
33
#include "intel_backlight.h"
33
34
#include "intel_combo_phy.h"
Original file line number Diff line number Diff line change
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Copyright © 2021 Intel Corporation
4
+ */
5
+
6
+ #ifndef __ICL_DSI_H__
7
+ #define __ICL_DSI_H__
8
+
9
+ struct drm_i915_private ;
10
+ struct intel_crtc_state ;
11
+
12
+ void icl_dsi_init (struct drm_i915_private * i915 );
13
+ void icl_dsi_frame_update (struct intel_crtc_state * crtc_state );
14
+
15
+ #endif /* __ICL_DSI_H__ */
Original file line number Diff line number Diff line change 14
14
15
15
#include "i915_trace.h"
16
16
#include "i915_vgpu.h"
17
-
17
+ #include "icl_dsi.h"
18
18
#include "intel_atomic.h"
19
19
#include "intel_atomic_plane.h"
20
20
#include "intel_color.h"
Original file line number Diff line number Diff line change 73
73
#include "g4x_dp.h"
74
74
#include "g4x_hdmi.h"
75
75
#include "i915_drv.h"
76
+ #include "icl_dsi.h"
76
77
#include "intel_acpi.h"
77
78
#include "intel_atomic.h"
78
79
#include "intel_atomic_plane.h"
Original file line number Diff line number Diff line change @@ -166,11 +166,6 @@ static inline u16 intel_dsi_encoder_ports(struct intel_encoder *encoder)
166
166
return enc_to_intel_dsi (encoder )-> ports ;
167
167
}
168
168
169
- /* icl_dsi.c */
170
- void icl_dsi_init (struct drm_i915_private * dev_priv );
171
- void icl_dsi_frame_update (struct intel_crtc_state * crtc_state );
172
-
173
- /* intel_dsi.c */
174
169
int intel_dsi_bitrate (const struct intel_dsi * intel_dsi );
175
170
int intel_dsi_tlpx_ns (const struct intel_dsi * intel_dsi );
176
171
enum drm_panel_orientation
You can’t perform that action at this time.
0 commit comments