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
This commit is contained in:
Jeff Johnson
2022-12-08 13:45:00 -08:00
committed by Madan Koyyalamudi
parent 9abbbebb5f
commit bdc8c47288
4 changed files with 6 additions and 3 deletions

View File

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

View File

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

View File

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

View File

@@ -1,5 +1,6 @@
/* /*
* Copyright (c) 2018-2019, 2021 The Linux Foundation. All rights reserved. * 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 * Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the * 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 * __dsc_driver_trans_trigger_checked() - trigger any next pending driver
* transition, only after passing the "can trans" check * transition, only after passing the "can trans" check
* @driver: driver context
* *
* Return: true if the trigger was "handled." This indicates down-tree nodes * Return: true if the trigger was "handled." This indicates down-tree nodes
* should _not_ attempt to trigger a new transition. * 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 * __dsc_psoc_trans_trigger_checked() - trigger any next pending psoc
* transition, only after passing the "can trans" check * transition, only after passing the "can trans" check
* @psoc: psoc context
* *
* Return: true if the trigger was "handled." This indicates down-tree nodes * Return: true if the trigger was "handled." This indicates down-tree nodes
* should _not_ attempt to trigger a new transition. * should _not_ attempt to trigger a new transition.