1219180Sadrian/*
2219180Sadrian * Copyright (c) 2011 Adrian Chadd, Xenion Pty Ltd.
3219180Sadrian * All rights reserved.
4219180Sadrian *
5219180Sadrian * Redistribution and use in source and binary forms, with or without
6219180Sadrian * modification, are permitted provided that the following conditions
7219180Sadrian * are met:
8219180Sadrian * 1. Redistributions of source code must retain the above copyright
9219180Sadrian *    notice, this list of conditions and the following disclaimer,
10219180Sadrian *    without modification.
11219180Sadrian * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12219180Sadrian *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13219180Sadrian *    redistribution must be conditioned upon including a substantially
14219180Sadrian *    similar Disclaimer requirement for further binary redistribution.
15219180Sadrian *
16219180Sadrian * NO WARRANTY
17219180Sadrian * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18219180Sadrian * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19219180Sadrian * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20219180Sadrian * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21219180Sadrian * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22219180Sadrian * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23219180Sadrian * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24219180Sadrian * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25219180Sadrian * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26219180Sadrian * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27219180Sadrian * THE POSSIBILITY OF SUCH DAMAGES.
28219180Sadrian *
29219180Sadrian * $FreeBSD$
30219180Sadrian */
31219180Sadrian
32219180Sadrian#ifndef	__IF_ATH_SYSCTL_H__
33219180Sadrian#define	__IF_ATH_SYSCTL_H__
34219180Sadrian
35219180Sadrianextern void ath_sysctlattach(struct ath_softc *);
36219180Sadrianextern void ath_sysctl_stats_attach(struct ath_softc *sc);
37223459Sadrianextern void ath_sysctl_hal_attach(struct ath_softc *sc);
38219180Sadrian#endif
39