mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 08:35:10 +07:00
ba0fbe236f
Make objects about 8822c functions and 8822c tables, i.e. rtw8822c.o and rtw8822c_table.o, an individual kernel module called rtw88_8822c.ko. For 8822c pcie chip, i.e. 8822CE chip, add a chip entry point module called rtw88_8822ce.ko which will depend on rtw88_8822c.ko and rtwpci.ko. Signed-off-by: Zong-Zhe Yang <kevin_yang@realtek.com> Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20200515052327.31874-4-yhchuang@realtek.com
15 lines
414 B
C
15 lines
414 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/* Copyright(c) 2018-2019 Realtek Corporation
|
|
*/
|
|
|
|
#ifndef __RTW_8822CE_H_
|
|
#define __RTW_8822CE_H_
|
|
|
|
extern const struct dev_pm_ops rtw_pm_ops;
|
|
extern struct rtw_chip_info rtw8822c_hw_spec;
|
|
int rtw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id);
|
|
void rtw_pci_remove(struct pci_dev *pdev);
|
|
void rtw_pci_shutdown(struct pci_dev *pdev);
|
|
|
|
#endif
|