File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed
drivers/gpu/drm/amd/display/modules Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -88,14 +88,6 @@ static uint8_t is_cp_desired_hdcp2(struct mod_hdcp *hdcp)
88
88
!hdcp -> connection .is_hdcp2_revoked ;
89
89
}
90
90
91
- static void exit_idle_optimizations (struct mod_hdcp * hdcp )
92
- {
93
- struct mod_hdcp_dm * dm = & hdcp -> config .dm ;
94
-
95
- if (dm -> funcs .exit_idle_optimizations )
96
- dm -> funcs .exit_idle_optimizations (dm -> handle );
97
- }
98
-
99
91
static enum mod_hdcp_status execution (struct mod_hdcp * hdcp ,
100
92
struct mod_hdcp_event_context * event_ctx ,
101
93
union mod_hdcp_transition_input * input )
@@ -551,8 +543,6 @@ enum mod_hdcp_status mod_hdcp_process_event(struct mod_hdcp *hdcp,
551
543
memset (& event_ctx , 0 , sizeof (struct mod_hdcp_event_context ));
552
544
event_ctx .event = event ;
553
545
554
- exit_idle_optimizations (hdcp );
555
-
556
546
/* execute and transition */
557
547
exec_status = execution (hdcp , & event_ctx , & hdcp -> auth .trans_input );
558
548
trans_status = transition (
Original file line number Diff line number Diff line change @@ -156,13 +156,6 @@ struct mod_hdcp_ddc {
156
156
} funcs ;
157
157
};
158
158
159
- struct mod_hdcp_dm {
160
- void * handle ;
161
- struct {
162
- void (* exit_idle_optimizations )(void * handle );
163
- } funcs ;
164
- };
165
-
166
159
struct mod_hdcp_psp {
167
160
void * handle ;
168
161
void * funcs ;
@@ -279,7 +272,6 @@ struct mod_hdcp_display_query {
279
272
struct mod_hdcp_config {
280
273
struct mod_hdcp_psp psp ;
281
274
struct mod_hdcp_ddc ddc ;
282
- struct mod_hdcp_dm dm ;
283
275
uint8_t index ;
284
276
};
285
277
You can’t perform that action at this time.
0 commit comments