mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 10:01:41 +00:00
f56f08636d
Make objects about 8723d functions and 8723d tables, i.e. rtw8723d.o and rtw8723d_table.o, an individual kernel module called rtw88_8723d.ko. For 8723d pcie chip, i.e. 8723DE chip, add a chip entry point module called rtw88_8723de.ko which will depend on rtw88_8723d.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-6-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_8723DE_H_
|
|
#define __RTW_8723DE_H_
|
|
|
|
extern const struct dev_pm_ops rtw_pm_ops;
|
|
extern struct rtw_chip_info rtw8723d_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
|