mirror of
https://github.com/proski/madwifi
synced 2024-11-21 14:01:54 +03:00
Extend support for AHB to Linux 2.6.15 and newer
Linux 2.6.15 introduces platform_driver_register() that if_ath_ahb.c is using.
This commit is contained in:
parent
e731eb9ab4
commit
56076e4f26
2
INSTALL
2
INSTALL
@ -32,7 +32,7 @@ Linux kernels starting with version 2.6.13 should work without problems.
|
|||||||
Due to quick pace of Linux development, there is no way compatibility
|
Due to quick pace of Linux development, there is no way compatibility
|
||||||
with the future 2.6 kernels can be ensured. However, the latest 2.6
|
with the future 2.6 kernels can be ensured. However, the latest 2.6
|
||||||
kernel at the time of the release should be expected to work. For AHB
|
kernel at the time of the release should be expected to work. For AHB
|
||||||
support, Linux 2.6.19 or newer is required.
|
support, Linux 2.6.15 or newer is required.
|
||||||
|
|
||||||
Automatic module loading support (CONFIG_KMOD) is highly recommended;
|
Automatic module loading support (CONFIG_KMOD) is highly recommended;
|
||||||
otherwise, you'll need to load all required modules manually.
|
otherwise, you'll need to load all required modules manually.
|
||||||
|
@ -34,8 +34,8 @@
|
|||||||
#include "if_ath_ahb.h"
|
#include "if_ath_ahb.h"
|
||||||
#include "ah_soc.h"
|
#include "ah_soc.h"
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)
|
||||||
#error "Kernel versions older than 2.6.19 are not supported!"
|
#error "Kernel versions older than 2.6.15 are not supported!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user