diff options
author | Andi Shyti <andi.shyti@linux.intel.com> | 2024-08-07 15:05:16 +0200 |
---|---|---|
committer | Andi Shyti <andi.shyti@linux.intel.com> | 2024-08-08 13:26:33 +0200 |
commit | 6600c55ba0d46c6f2f74eaa6ddfe2b66cb8df852 (patch) | |
tree | 61fe4fa8b42df6a05de02bdfb5cdd07ea1856230 /drivers/gpu/drm/i915/display/intel_dp_hdcp.c | |
parent | drm/i915: Remove DSC register dump (diff) | |
download | linux-6600c55ba0d46c6f2f74eaa6ddfe2b66cb8df852.tar.xz linux-6600c55ba0d46c6f2f74eaa6ddfe2b66cb8df852.zip |
drm/i915: Replace double blank with single blank after comma
Do not use double blanks, ", " in function parameters where it's
not required by any alignment purpose. Replase it with a single
blank, ", ".
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240807130516.491053-3-andi.shyti@linux.intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_dp_hdcp.c')
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c index 47f51a5ab493..ec357d2670f1 100644 --- a/drivers/gpu/drm/i915/display/intel_dp_hdcp.c +++ b/drivers/gpu/drm/i915/display/intel_dp_hdcp.c @@ -150,7 +150,7 @@ int intel_dp_hdcp_repeater_present(struct intel_digital_port *dig_port, ssize_t ret; u8 bcaps; - ret = intel_dp_hdcp_read_bcaps(&dig_port->dp.aux, i915, &bcaps); + ret = intel_dp_hdcp_read_bcaps(&dig_port->dp.aux, i915, &bcaps); if (ret) return ret; |