| 1 | diff -Nur a/include/linux/ath5k_platform.h b/include/linux/ath5k_platform.h |
| 2 | --- a/include/linux/ath5k_platform.h 1970-01-01 01:00:00.000000000 +0100 |
| 3 | +++ b/include/linux/ath5k_platform.h 2010-06-21 00:19:52.000000000 +0200 |
| 4 | @@ -0,0 +1,30 @@ |
| 5 | +/* |
| 6 | + * Copyright (c) 2008 Atheros Communications Inc. |
| 7 | + * Copyright (c) 2009 Gabor Juhos <juhosg@openwrt.org> |
| 8 | + * Copyright (c) 2009 Imre Kaloz <kaloz@openwrt.org> |
| 9 | + * Copyright (c) 2010 Daniel Golle <daniel.golle@gmail.com> |
| 10 | + * |
| 11 | + * Permission to use, copy, modify, and/or distribute this software for any |
| 12 | + * purpose with or without fee is hereby granted, provided that the above |
| 13 | + * copyright notice and this permission notice appear in all copies. |
| 14 | + * |
| 15 | + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 16 | + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 17 | + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 18 | + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 20 | + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 21 | + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 22 | + */ |
| 23 | + |
| 24 | +#ifndef _LINUX_ATH5K_PLATFORM_H |
| 25 | +#define _LINUX_ATH5K_PLATFORM_H |
| 26 | + |
| 27 | +#define ATH5K_PLAT_EEP_MAX_WORDS 2048 |
| 28 | + |
| 29 | +struct ath5k_platform_data { |
| 30 | + u16 *eeprom_data; |
| 31 | + u8 *macaddr; |
| 32 | +}; |
| 33 | + |
| 34 | +#endif /* _LINUX_ATH5K_PLATFORM_H */ |
| 35 | |
| 36 | |