xref: /wlan-dirver/utils/sigma-dut/cmds_reg.c (revision a2df7db57a432da130697665946610be35e6f47e)
1cd4e3c3eSJouni Malinen /*
2cd4e3c3eSJouni Malinen  * Sigma Control API DUT (station/AP)
3cd4e3c3eSJouni Malinen  * Copyright (c) 2010, Atheros Communications, Inc.
4*9d7e31d5SJouni Malinen  * Copyright (c) 2011-2014, 2017, Qualcomm Atheros, Inc.
5cd4e3c3eSJouni Malinen  * All Rights Reserved.
6cd4e3c3eSJouni Malinen  * Licensed under the Clear BSD license. See README for more details.
7cd4e3c3eSJouni Malinen  */
8cd4e3c3eSJouni Malinen 
9cd4e3c3eSJouni Malinen #include "sigma_dut.h"
10cd4e3c3eSJouni Malinen 
sigma_dut_register_cmds(void)11cd4e3c3eSJouni Malinen void sigma_dut_register_cmds(void)
12cd4e3c3eSJouni Malinen {
13cd4e3c3eSJouni Malinen 	basic_register_cmds();
14cd4e3c3eSJouni Malinen 	sta_register_cmds();
15cd4e3c3eSJouni Malinen 	traffic_register_cmds();
16cd4e3c3eSJouni Malinen #ifdef CONFIG_TRAFFIC_AGENT
17cd4e3c3eSJouni Malinen 	traffic_agent_register_cmds();
18cd4e3c3eSJouni Malinen #endif /* CONFIG_TRAFFIC_AGENT */
19cd4e3c3eSJouni Malinen 	p2p_register_cmds();
20cd4e3c3eSJouni Malinen 	ap_register_cmds();
21cd4e3c3eSJouni Malinen 	powerswitch_register_cmds();
22cd4e3c3eSJouni Malinen 	atheros_register_cmds();
23cd4e3c3eSJouni Malinen #ifdef CONFIG_WLANTEST
24cd4e3c3eSJouni Malinen 	wlantest_register_cmds();
25cd4e3c3eSJouni Malinen #endif /* CONFIG_WLANTEST */
26cd4e3c3eSJouni Malinen 	dev_register_cmds();
27cd4e3c3eSJouni Malinen #ifdef CONFIG_SNIFFER
28cd4e3c3eSJouni Malinen 	sniffer_register_cmds();
29cd4e3c3eSJouni Malinen #endif /* CONFIG_SNIFFER */
30cd4e3c3eSJouni Malinen #ifdef CONFIG_SERVER
31cd4e3c3eSJouni Malinen 	server_register_cmds();
32cd4e3c3eSJouni Malinen #endif /* CONFIG_SERVER */
339c381f59SAmarnath Hullur Subramanyam #ifdef MIRACAST
349c381f59SAmarnath Hullur Subramanyam 	miracast_register_cmds();
359c381f59SAmarnath Hullur Subramanyam #endif /* MIRACAST */
36cd4e3c3eSJouni Malinen }
37