1331722Seadler/*
2222301Sadrian * Copyright (c) 2008-2010 Atheros Communications Inc.
3222301Sadrian *
4222301Sadrian * Redistribution and use in source and binary forms, with or without
5222301Sadrian * modification, are permitted provided that the following conditions
6222301Sadrian * are met:
7222301Sadrian * 1. Redistributions of source code must retain the above copyright
8222301Sadrian *    notice, this list of conditions and the following disclaimer.
9222301Sadrian * 2. Redistributions in binary form must reproduce the above copyright
10222301Sadrian *    notice, this list of conditions and the following disclaimer in the
11222301Sadrian *    documentation and/or other materials provided with the distribution.
12222301Sadrian *
13222301Sadrian * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14222301Sadrian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15222301Sadrian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16222301Sadrian * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17222301Sadrian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18222301Sadrian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19222301Sadrian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20222301Sadrian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21222301Sadrian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22222301Sadrian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23222301Sadrian * SUCH DAMAGE.
24222301Sadrian *
25222301Sadrian * $FreeBSD$
26222301Sadrian */
27222301Sadrian#ifndef	__AR9287_CAL_H__
28222301Sadrian#define	__AR9287_CAL_H__
29222301Sadrian
30222301Sadrianextern void ar9287PACal(struct ath_hal *ah, HAL_BOOL is_reset);
31222301Sadrianextern HAL_BOOL ar9287InitCalHardware(struct ath_hal *ah, const struct ieee80211_channel *chan);
32222301Sadrian
33222301Sadrian#endif	/* __AR9287_CAL_H__ */
34