1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| /**
| ******************************************************************************
| *
| * @file rwnx_pci.h
| *
| * Copyright (C) RivieraWaves 2012-2019
| *
| ******************************************************************************
| */
|
| #ifndef _RWNX_PCI_H_
| #define _RWNX_PCI_H_
|
| int rwnx_pci_register_drv(void);
| void rwnx_pci_unregister_drv(void);
|
| #endif /* _RWNX_PCI_H_ */
|
|