if_ath_sysctl.h revision 330897
1163953Srrs/*-
2169382Srrs * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3163953Srrs *
4163953Srrs * Copyright (c) 2011 Adrian Chadd, Xenion Pty Ltd.
5163953Srrs * All rights reserved.
6163953Srrs *
7163953Srrs * Redistribution and use in source and binary forms, with or without
8163953Srrs * modification, are permitted provided that the following conditions
9163953Srrs * are met:
10163953Srrs * 1. Redistributions of source code must retain the above copyright
11163953Srrs *    notice, this list of conditions and the following disclaimer,
12163953Srrs *    without modification.
13163953Srrs * 2. Redistributions in binary form must reproduce at minimum a disclaimer
14163953Srrs *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
15163953Srrs *    redistribution must be conditioned upon including a substantially
16163953Srrs *    similar Disclaimer requirement for further binary redistribution.
17163953Srrs *
18163953Srrs * NO WARRANTY
19163953Srrs * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20163953Srrs * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21163953Srrs * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
22163953Srrs * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23163953Srrs * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
24163953Srrs * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25163953Srrs * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26163953Srrs * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
27163953Srrs * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28163953Srrs * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29163953Srrs * THE POSSIBILITY OF SUCH DAMAGES.
30163953Srrs *
31163953Srrs * $FreeBSD: stable/11/sys/dev/ath/if_ath_sysctl.h 330897 2018-03-14 03:19:51Z eadler $
32163953Srrs */
33163953Srrs
34163953Srrs#ifndef	__IF_ATH_SYSCTL_H__
35163953Srrs#define	__IF_ATH_SYSCTL_H__
36163953Srrs
37163953Srrsextern void ath_sysctlattach(struct ath_softc *);
38163953Srrsextern void ath_sysctl_stats_attach(struct ath_softc *sc);
39163953Srrsextern void ath_sysctl_hal_attach(struct ath_softc *sc);
40163953Srrs#endif
41163953Srrs