blob: fda6dafecb8cb683faef59118a38661e04e340c9 [file] [log] [blame]
Rafał Miłecki5161bec2010-10-14 21:16:33 +02001/*
2
3 Broadcom B43 wireless driver
4
5 Copyright (c) 2010 Rafał Miłecki <zajec5@gmail.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21
22*/
23
24#ifndef B43_RADIO_2056_H_
25#define B43_RADIO_2056_H_
26
27#include <linux/types.h>
28
29#include "tables_nphy.h"
30
31struct b43_nphy_channeltab_entry_rev3 {
32 /* The channel number */
33 u8 channel;
34 /* The channel frequency in MHz */
35 u16 freq;
36 /* Radio register values on channelswitch */
37 /* TODO */
38 /* PHY register values on channelswitch */
39 struct b43_phy_n_sfo_cfg phy_regs;
40};
41
42#endif /* B43_RADIO_2056_H_ */