Remove struct ath_ahb_softc, it's pointless for supported kernels
[madwifi/.git] / kernelversion.c
1 /* This file is used for a trick to determine the version of the kernel
2  * build tree. Simply grepping <linux/version.h> doesn't work, since
3  * some distributions have multiple UTS_RELEASE definitions in that
4  * file.
5  * Taken from the lm_sensors project.
6  *
7  * $Id$
8  */
9 #include <linux/version.h>
10
11 #ifndef UTS_RELEASE
12 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)
13 /* Linux 2.6.33+ uses <generated/utsrelease.h> */
14 #include <generated/utsrelease.h>
15 #else
16 /* Linux 2.6.18 - 2.6.32 uses <linux/utsrelease.h> */
17 #include <linux/utsrelease.h>
18 #endif
19 #endif
20
21 char *uts_release = UTS_RELEASE;