Browse Source

qcacld-3.0: Fix DSC documentation

The kernel-doc script identified a few documentation issues in
components/dsc, so fix them.

Change-Id: I5e2f4464abb7c94ec567c864c573d314d319ea37
CRs-Fixed: 3356932
Jeff Johnson 2 years ago
parent
commit
bdc8c47288

+ 1 - 1
components/dsc/inc/wlan_dsc_driver.h

@@ -26,7 +26,7 @@
 
 #include "qdf_status.h"
 
-/**
+/*
  * struct dsc_driver - opaque dsc driver context
  */
 struct dsc_driver;

+ 1 - 1
components/dsc/inc/wlan_dsc_psoc.h

@@ -27,7 +27,7 @@
 #include "qdf_status.h"
 #include "wlan_dsc_driver.h"
 
-/**
+/*
  * struct dsc_psoc - opaque dsc psoc context
  */
 struct dsc_psoc;

+ 1 - 1
components/dsc/inc/wlan_dsc_vdev.h

@@ -27,7 +27,7 @@
 #include "qdf_status.h"
 #include "wlan_dsc_psoc.h"
 
-/**
+/*
  * struct dsc_vdev - opaque dsc vdev context
  */
 struct dsc_vdev;

+ 3 - 0
components/dsc/src/__wlan_dsc.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2018-2019, 2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -334,6 +335,7 @@ bool __dsc_trans_active_or_queued(struct dsc_trans *trans);
 /**
  * __dsc_driver_trans_trigger_checked() - trigger any next pending driver
  *	transition, only after passing the "can trans" check
+ * @driver: driver context
  *
  * Return: true if the trigger was "handled." This indicates down-tree nodes
  * should _not_ attempt to trigger a new transition.
@@ -343,6 +345,7 @@ bool __dsc_driver_trans_trigger_checked(struct dsc_driver *driver);
 /**
  * __dsc_psoc_trans_trigger_checked() - trigger any next pending psoc
  *	transition, only after passing the "can trans" check
+ * @psoc: psoc context
  *
  * Return: true if the trigger was "handled." This indicates down-tree nodes
  * should _not_ attempt to trigger a new transition.