blob: 55265931b9dd92010305292dc978923fcaaaad3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2001 - 2015 Intel Corporation
*/
/*$FreeBSD$*/
#include "e1000_api.h"
/*
* NOTE: the following routines using the e1000
* naming style are provided to the shared
* code but are OS specific
*/
void
e1000_write_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value)
{
return;
}
void
e1000_read_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value)
{
*value = 0;
return;
}
void
e1000_pci_set_mwi(struct e1000_hw *hw)
{
}
void
e1000_pci_clear_mwi(struct e1000_hw *hw)
{
}
/*
* Read the PCI Express capabilities
*/
int32_t
e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
{
return E1000_NOT_IMPLEMENTED;
}
/*
* Write the PCI Express capabilities
*/
int32_t
e1000_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
{
return E1000_NOT_IMPLEMENTED;
}
|