blob: 74a2542c2b56b04ac51f442ead6af7a31fb3a88f [file] [log] [blame]
Victor Liuab669fd2024-01-23 11:40:42 -08001/*
2 * This file is part of the UWB stack for linux.
3 *
4 * Copyright (c) 2021 Qorvo US, Inc.
5 *
6 * This software is provided under the GNU General Public License, version 2
7 * (GPLv2), as well as under a Qorvo commercial license.
8 *
9 * You may choose to use this software under the terms of the GPLv2 License,
10 * version 2 ("GPLv2"), as published by the Free Software Foundation.
11 * You should have received a copy of the GPLv2 along with this program. If
12 * not, see <http://www.gnu.org/licenses/>.
13 *
14 * This program is distributed under the GPLv2 in the hope that it will be
15 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GPLv2 for more
17 * details.
18 *
19 * If you cannot meet the requirements of the GPLv2, you may not use this
20 * software for any purpose without first obtaining a commercial license from
21 * Qorvo. Please contact Qorvo to inquire about licensing terms.
22 */
23#ifndef __DW3000_PCTT_H
24#define __DW3000_PCTT_H
25
26/**
27 * struct dw3000_pctt - PCTT coexistence context.
28 */
29struct dw3000_pctt {
30 /**
31 * @enabled: True when pctt is enabled.
32 */
33 bool enabled;
34};
35
36#endif /* __DW3000_PCTT_H */