2 * Copyright (c) 2008-2009 Atheros Communications Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <linux/skbuff.h>
21 #include <linux/if_ether.h>
23 static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
25 struct reg_dmn_pair_mapping {
31 struct ath_regulatory {
39 struct reg_dmn_pair_mapping *regpair;
43 unsigned int (*read)(void *, u32 reg_offset);
44 void (*write)(void *, u32 val, u32 reg_offset);
52 u8 curbssid[ETH_ALEN];
53 u8 bssidmask[ETH_ALEN];
54 struct ath_regulatory regulatory;
55 const struct ath_ops *ops;
58 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
62 void ath_hw_setbssidmask(struct ath_common *common);