Contributors: 8
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Yan-Hsuan Chuang |
47 |
40.52% |
1 |
11.11% |
| Zong-Zhe Yang |
45 |
38.79% |
1 |
11.11% |
| Chin-Yen Lee |
12 |
10.34% |
2 |
22.22% |
| Ping-Ke Shih |
5 |
4.31% |
1 |
11.11% |
| Lee Jones |
3 |
2.59% |
1 |
11.11% |
| Arnd Bergmann |
2 |
1.72% |
1 |
11.11% |
| Bitterblue Smith |
1 |
0.86% |
1 |
11.11% |
| Larry Finger |
1 |
0.86% |
1 |
11.11% |
| Total |
116 |
|
9 |
|
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
/* Copyright(c) 2018-2019 Realtek Corporation
*/
#include <linux/module.h>
#include <linux/pci.h>
#include "pci.h"
#include "rtw8723d.h"
static const struct pci_device_id rtw_8723de_id_table[] = {
{
PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xD723),
.driver_data = (kernel_ulong_t)&rtw8723d_hw_spec
},
{}
};
MODULE_DEVICE_TABLE(pci, rtw_8723de_id_table);
static struct pci_driver rtw_8723de_driver = {
.name = KBUILD_MODNAME,
.id_table = rtw_8723de_id_table,
.probe = rtw_pci_probe,
.remove = rtw_pci_remove,
.driver.pm = &rtw_pm_ops,
.shutdown = rtw_pci_shutdown,
.err_handler = &rtw_pci_err_handler,
};
module_pci_driver(rtw_8723de_driver);
MODULE_AUTHOR("Realtek Corporation");
MODULE_DESCRIPTION("Realtek 802.11n wireless 8723de driver");
MODULE_LICENSE("Dual BSD/GPL");