Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings

Make the documentation match code.

v2: Small fixups while at it (Lucas)

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/5c7ba8db172101c40b686463f169ec579a509f29.1709898638.git.jani.nikula@intel.com

+13 -5
+13 -5
include/drm/i915_hdcp_interface.h
··· 54 54 }; 55 55 56 56 /** 57 - * enum hdcp_tc - ME/GSC Firmware defined index for transcoders 57 + * enum hdcp_transcoder - ME/GSC Firmware defined index for transcoders 58 58 * @HDCP_INVALID_TRANSCODER: Index for Invalid transcoder 59 59 * @HDCP_TRANSCODER_EDP: Index for EDP Transcoder 60 60 * @HDCP_TRANSCODER_DSI0: Index for DSI0 Transcoder ··· 106 106 * And Prepare AKE_Init. 107 107 * @verify_receiver_cert_prepare_km: Verify the Receiver Certificate 108 108 * AKE_Send_Cert and prepare 109 - AKE_Stored_Km/AKE_No_Stored_Km 109 + * AKE_Stored_Km/AKE_No_Stored_Km 110 110 * @verify_hprime: Verify AKE_Send_H_prime 111 111 * @store_pairing_info: Store pairing info received 112 112 * @initiate_locality_check: Prepare LC_Init ··· 170 170 /** 171 171 * struct i915_hdcp_arbiter - Used for communication between i915 172 172 * and hdcp drivers for the HDCP2.2 services 173 - * @hdcp_dev: device that provide the HDCP2.2 service from MEI Bus. 174 - * @hdcp_ops: Ops implemented by hdcp driver or intel_hdcp_gsc , used by i915 driver. 175 173 */ 176 174 struct i915_hdcp_arbiter { 175 + /** 176 + * @hdcp_dev: device that provides the HDCP2.2 service from MEI Bus. 177 + */ 177 178 struct device *hdcp_dev; 179 + 180 + /** 181 + * @ops: Ops implemented by hdcp driver or intel_hdcp_gsc, used by i915 182 + * driver. 183 + */ 178 184 const struct i915_hdcp_ops *ops; 179 185 180 - /* To protect the above members. */ 186 + /** 187 + * @mutex: To protect the above members. 188 + */ 181 189 struct mutex mutex; 182 190 }; 183 191