qcacmn: Fix umac/cmn_services/sm_engine documentation

The kernel-doc script identified some documentation issues in the
umac/cmn_services/sm_engine folder, so fix them.

Change-Id: I08e56fabac869555719230c53537a8cd671ca4e5
CRs-Fixed: 3390481
This commit is contained in:
Jeff Johnson
2023-01-27 17:20:22 -08:00
committed by Madan Koyyalamudi
parent a30c47e6cc
commit 6b13d7bbdf
2 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
/*
* Copyright (c) 2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2022-2023 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
@@ -161,7 +161,7 @@ struct wlan_sm {
* @ctx: caller pointer, used on invoking callbacks
* @init_state: Default state of the SM
* @state_info: States' definitions
* @num_state: Number of states
* @num_states: Number of states
* @event_names: Event name table
* @num_event_names: Number of events
*

View File

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
* Copyright (c) 2023 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
@@ -54,8 +55,8 @@
struct wlan_sm;
/**
* enum wlan_sm_trace_type - history element type
* @SM_EVENT_STATE_TRANSITION - Represents state transition
* @SM_EVENT_MSG_PROCESSING - Represents event processing
* @SM_EVENT_STATE_TRANSITION: Represents state transition
* @SM_EVENT_MSG_PROCESSING: Represents event processing
*/
enum wlan_sm_trace_type {
SM_EVENT_STATE_TRANSITION = 1,
@@ -70,6 +71,7 @@ enum wlan_sm_trace_type {
* @event_type: Type of the event
* @initial_state: Current state (state/sub-state)
* @final_state: New state
* @time: Timestamp
*/
struct wlan_sm_history_info {
enum wlan_sm_trace_type trace_type;