1*572ff6f6SMatthew Dillon /* 2*572ff6f6SMatthew Dillon * Copyright (c) 2011 Adrian Chadd, Xenion Pty Ltd. 3*572ff6f6SMatthew Dillon * All rights reserved. 4*572ff6f6SMatthew Dillon * 5*572ff6f6SMatthew Dillon * Redistribution and use in source and binary forms, with or without 6*572ff6f6SMatthew Dillon * modification, are permitted provided that the following conditions 7*572ff6f6SMatthew Dillon * are met: 8*572ff6f6SMatthew Dillon * 1. Redistributions of source code must retain the above copyright 9*572ff6f6SMatthew Dillon * notice, this list of conditions and the following disclaimer, 10*572ff6f6SMatthew Dillon * without modification. 11*572ff6f6SMatthew Dillon * 2. Redistributions in binary form must reproduce at minimum a disclaimer 12*572ff6f6SMatthew Dillon * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any 13*572ff6f6SMatthew Dillon * redistribution must be conditioned upon including a substantially 14*572ff6f6SMatthew Dillon * similar Disclaimer requirement for further binary redistribution. 15*572ff6f6SMatthew Dillon * 16*572ff6f6SMatthew Dillon * NO WARRANTY 17*572ff6f6SMatthew Dillon * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18*572ff6f6SMatthew Dillon * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19*572ff6f6SMatthew Dillon * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY 20*572ff6f6SMatthew Dillon * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 21*572ff6f6SMatthew Dillon * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, 22*572ff6f6SMatthew Dillon * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23*572ff6f6SMatthew Dillon * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24*572ff6f6SMatthew Dillon * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 25*572ff6f6SMatthew Dillon * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26*572ff6f6SMatthew Dillon * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 27*572ff6f6SMatthew Dillon * THE POSSIBILITY OF SUCH DAMAGES. 28*572ff6f6SMatthew Dillon * 29*572ff6f6SMatthew Dillon * $FreeBSD$ 30*572ff6f6SMatthew Dillon */ 31*572ff6f6SMatthew Dillon 32*572ff6f6SMatthew Dillon #ifndef __IF_ATH_SYSCTL_H__ 33*572ff6f6SMatthew Dillon #define __IF_ATH_SYSCTL_H__ 34*572ff6f6SMatthew Dillon 35*572ff6f6SMatthew Dillon extern void ath_sysctlattach(struct ath_softc *); 36*572ff6f6SMatthew Dillon extern void ath_sysctl_stats_attach(struct ath_softc *sc); 37*572ff6f6SMatthew Dillon extern void ath_sysctl_hal_attach(struct ath_softc *sc); 38*572ff6f6SMatthew Dillon #endif 39