1f56f0863SZong-Zhe Yang // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2f56f0863SZong-Zhe Yang /* Copyright(c) 2018-2019  Realtek Corporation
3f56f0863SZong-Zhe Yang  */
4f56f0863SZong-Zhe Yang 
5f56f0863SZong-Zhe Yang #include <linux/module.h>
6f56f0863SZong-Zhe Yang #include <linux/pci.h>
72e86ef41SLee Jones #include "pci.h"
8*e36db29cSLarry Finger #include "rtw8723d.h"
9f56f0863SZong-Zhe Yang 
10f56f0863SZong-Zhe Yang static const struct pci_device_id rtw_8723de_id_table[] = {
11f56f0863SZong-Zhe Yang 	{
12f56f0863SZong-Zhe Yang 		PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xD723),
13f56f0863SZong-Zhe Yang 		.driver_data = (kernel_ulong_t)&rtw8723d_hw_spec
14f56f0863SZong-Zhe Yang 	},
15f56f0863SZong-Zhe Yang 	{}
16f56f0863SZong-Zhe Yang };
17f56f0863SZong-Zhe Yang MODULE_DEVICE_TABLE(pci, rtw_8723de_id_table);
18f56f0863SZong-Zhe Yang 
19f56f0863SZong-Zhe Yang static struct pci_driver rtw_8723de_driver = {
20f56f0863SZong-Zhe Yang 	.name = "rtw_8723de",
21f56f0863SZong-Zhe Yang 	.id_table = rtw_8723de_id_table,
22f56f0863SZong-Zhe Yang 	.probe = rtw_pci_probe,
23f56f0863SZong-Zhe Yang 	.remove = rtw_pci_remove,
24f56f0863SZong-Zhe Yang 	.driver.pm = &rtw_pm_ops,
25f56f0863SZong-Zhe Yang 	.shutdown = rtw_pci_shutdown,
26f56f0863SZong-Zhe Yang };
27f56f0863SZong-Zhe Yang module_pci_driver(rtw_8723de_driver);
28f56f0863SZong-Zhe Yang 
29f56f0863SZong-Zhe Yang MODULE_AUTHOR("Realtek Corporation");
30f56f0863SZong-Zhe Yang MODULE_DESCRIPTION("Realtek 802.11n wireless 8723de driver");
31f56f0863SZong-Zhe Yang MODULE_LICENSE("Dual BSD/GPL");
32