Root/target/linux/generic/files/include/linux/rt2x00_platform.h

1/*
2 * Platform data definition for the rt2x00 driver
3 *
4 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 */
11
12#ifndef _RT2X00_PLATFORM_H
13#define _RT2X00_PLATFORM_H
14
15struct rt2x00_platform_data {
16    char *eeprom_file_name;
17    const u8 *mac_address;
18
19    int disable_2ghz;
20    int disable_5ghz;
21    int clk_is_20mhz;
22};
23
24#endif /* _RT2X00_PLATFORM_H */
25

Archive Download this file



interactive