mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-03-22 12:05:53 +00:00
14 lines
296 B
C
Executable File
14 lines
296 B
C
Executable File
#include <linux/version.h>
|
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26))
|
|
#include_next <linux/pci-aspm.h>
|
|
#else
|
|
#define PCIE_LINK_STATE_L0S 1
|
|
#define PCIE_LINK_STATE_L1 2
|
|
#define PCIE_LINK_STATE_CLKPM 4
|
|
|
|
static inline void pci_disable_link_state(struct pci_dev *pdev, int state)
|
|
{
|
|
}
|
|
#endif
|