mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
drm/i915/hdcp: rename intel_connector to connector
Follow the current convention of naming struct intel_connector pointers connector. Cc: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/8f43542a8f0ce0ec5725b769c077d3cea723bde0.1738924826.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
2c569b955e
commit
3a178c1a23
|
|
@ -2733,23 +2733,21 @@ void intel_hdcp_handle_cp_irq(struct intel_connector *connector)
|
|||
queue_delayed_work(i915->unordered_wq, &hdcp->check_work, 0);
|
||||
}
|
||||
|
||||
static void __intel_hdcp_info(struct seq_file *m, struct intel_connector *intel_connector,
|
||||
static void __intel_hdcp_info(struct seq_file *m, struct intel_connector *connector,
|
||||
bool remote_req)
|
||||
{
|
||||
bool hdcp_cap = false, hdcp2_cap = false;
|
||||
|
||||
if (!intel_connector->hdcp.shim) {
|
||||
if (!connector->hdcp.shim) {
|
||||
seq_puts(m, "No Connector Support");
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (remote_req) {
|
||||
intel_hdcp_get_remote_capability(intel_connector,
|
||||
&hdcp_cap,
|
||||
&hdcp2_cap);
|
||||
intel_hdcp_get_remote_capability(connector, &hdcp_cap, &hdcp2_cap);
|
||||
} else {
|
||||
hdcp_cap = intel_hdcp_get_capability(intel_connector);
|
||||
hdcp2_cap = intel_hdcp2_get_capability(intel_connector);
|
||||
hdcp_cap = intel_hdcp_get_capability(connector);
|
||||
hdcp2_cap = intel_hdcp2_get_capability(connector);
|
||||
}
|
||||
|
||||
if (hdcp_cap)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user