blob: ae81934d8e2f44e5ef6733192c8359a80f4785c0 [file] [log] [blame]
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001/*
2 * Sigma Control API DUT (station/AP)
3 * Copyright (c) 2010, Atheros Communications, Inc.
Jouni Malinen9d7e31d2017-12-22 18:55:04 +02004 * Copyright (c) 2011-2014, 2017, Qualcomm Atheros, Inc.
Jouni Malinen2feb9132021-11-16 00:53:06 +02005 * Copyright (c) 2019, The Linux Foundation
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006 * All Rights Reserved.
7 * Licensed under the Clear BSD license. See README for more details.
8 */
9
10#include "sigma_dut.h"
11
12void sigma_dut_register_cmds(void)
13{
Jouni Malinencd4e3c32015-10-29 12:39:56 +020014 basic_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020015 sta_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020016 traffic_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020017#ifdef CONFIG_TRAFFIC_AGENT
Jouni Malinencd4e3c32015-10-29 12:39:56 +020018 traffic_agent_register_cmds();
19#endif /* CONFIG_TRAFFIC_AGENT */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020020 p2p_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020021 ap_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020022 powerswitch_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020023 atheros_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020024#ifdef CONFIG_WLANTEST
Jouni Malinencd4e3c32015-10-29 12:39:56 +020025 wlantest_register_cmds();
26#endif /* CONFIG_WLANTEST */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020027 dev_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020028#ifdef CONFIG_SNIFFER
Jouni Malinencd4e3c32015-10-29 12:39:56 +020029 sniffer_register_cmds();
30#endif /* CONFIG_SNIFFER */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020031#ifdef CONFIG_SERVER
Jouni Malinencd4e3c32015-10-29 12:39:56 +020032 server_register_cmds();
33#endif /* CONFIG_SERVER */
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -070034#ifdef MIRACAST
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -070035 miracast_register_cmds();
36#endif /* MIRACAST */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020037}