summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJi Soo Shin <jisshin@google.com>2023-04-20 15:19:01 +0200
committerJi Soo Shin <jisshin@google.com>2023-04-20 15:39:57 +0200
commit610333d9b53586e0022e7b0b9d3d877aa9b7e476 (patch)
treee7cc903a6b703edb8877c6624a1444de75c58e3d
parent404329cb356ec77b41135a4d2db5e3a792d18f9e (diff)
downloadsamsung-610333d9b53586e0022e7b0b9d3d877aa9b7e476.tar.gz
hdcp: remove deprecated APIs
Bug: 274517648 Change-Id: I61655bc498c4cd192289f69bc593a5bb45b5c89e
-rw-r--r--auth-control.c14
-rw-r--r--exynos-hdcp-interface.h14
2 files changed, 0 insertions, 28 deletions
diff --git a/auth-control.c b/auth-control.c
index 21527cd..9a57fdb 100644
--- a/auth-control.c
+++ b/auth-control.c
@@ -122,17 +122,3 @@ void hdcp_auth_worker_init(void) {
void hdcp_auth_worker_deinit(void) {
cancel_delayed_work_sync(&hdcp_work);
}
-
-/* DEPRECATED */
-int hdcp_dplink_auth_check(enum auth_signal signal) { return -1; }
-EXPORT_SYMBOL_GPL(hdcp_dplink_auth_check);
-int hdcp_dplink_get_rxstatus(uint8_t *status) { return -1; }
-EXPORT_SYMBOL_GPL(hdcp_dplink_get_rxstatus);
-int hdcp_dplink_set_paring_available(void) { return -1; }
-EXPORT_SYMBOL_GPL(hdcp_dplink_set_paring_available);
-int hdcp_dplink_set_hprime_available(void) { return -1; }
-EXPORT_SYMBOL_GPL(hdcp_dplink_set_hprime_available);
-int hdcp_dplink_set_rp_ready(void) { return -1; }
-EXPORT_SYMBOL_GPL(hdcp_dplink_set_rp_ready);
-int hdcp_dplink_set_reauth(void) { return -1; }
-EXPORT_SYMBOL_GPL(hdcp_dplink_set_reauth);
diff --git a/exynos-hdcp-interface.h b/exynos-hdcp-interface.h
index d68cf25..c2c630c 100644
--- a/exynos-hdcp-interface.h
+++ b/exynos-hdcp-interface.h
@@ -21,18 +21,4 @@ void hdcp_dplink_connect_state(enum dp_state state);
void hdcp_dplink_handle_irq(void);
void dp_register_func_for_hdcp22(void (*func0)(u32 en), int (*func1)(u32 address, u32 length, u8 *data), int (*func2)(u32 address, u32 length, u8 *data));
-/* DEPRECATED */
-enum auth_signal {
- HDCP_OFF,
- HDCP1_ON,
- HDCP2_ON,
-};
-
-int hdcp_dplink_auth_check(enum auth_signal);
-int hdcp_dplink_get_rxstatus(uint8_t *status);
-int hdcp_dplink_set_paring_available(void);
-int hdcp_dplink_set_hprime_available(void);
-int hdcp_dplink_set_rp_ready(void);
-int hdcp_dplink_set_reauth(void);
-
#endif