qcacld-3.0: Added new parameter in p2p_set_noa command

Added support for new "start" parameter in
p2p_set_noa driver command.

Change-Id: I8bc743141ea6d9cfdf49ca89b0835f2e5519a12e
CRs-Fixed: 3557825
Šī revīzija ir iekļauta:
Deeksha Gupta
2023-08-25 15:57:09 +05:30
revīziju iesūtīja Rahul Choudhary
vecāks fadf698982
revīzija 964f138fd9
4 mainīti faili ar 38 papildinājumiem un 23 dzēšanām

Parādīt failu

@@ -1,6 +1,6 @@
/*
* Copyright (c) 2017-2019, 2021 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
@@ -47,6 +47,7 @@
* @single_noa_duration: single shot noa duration
* @ps_selection: power save selection
* @session_id: session id
* @start: start time
*/
struct p2p_ps_params {
uint8_t opp_ps;
@@ -57,6 +58,7 @@ struct p2p_ps_params {
uint32_t single_noa_duration;
uint8_t ps_selection;
uint8_t session_id;
uint32_t start;
};
/**
@@ -177,6 +179,7 @@ struct p2p_set_mac_filter_evt {
* @interval: Interval
* @single_noa_duration: Single shot noa duration
* @ps_selection: power save selection
* @start: Start time
*/
struct p2p_ps_config {
uint32_t vdev_id;
@@ -187,6 +190,7 @@ struct p2p_ps_config {
uint32_t interval;
uint32_t single_noa_duration;
uint32_t ps_selection;
uint32_t start;
};
/**