25 lines
531 B
C
Executable File
25 lines
531 B
C
Executable File
/*++
|
|
|
|
Copyright (c) 2021 Motor-comm Corporation.
|
|
Confidential and Proprietary. All rights reserved.
|
|
|
|
This is Motor-comm Corporation NIC driver relevant files. Please don't copy, modify,
|
|
distribute without commercial permission.
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef __FUXI_OS_H__
|
|
#define __FUXI_OS_H__
|
|
|
|
#define LINUX
|
|
|
|
#define PCIE_LP_ASPM_L0S 1
|
|
#define PCIE_LP_ASPM_L1 2
|
|
#define PCIE_LP_ASPM_L1SS 4
|
|
#define PCIE_LP_ASPM_LTR 8
|
|
|
|
|
|
#endif //__FUXI_OS_H__
|
|
|