Contributors: 8
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Zong-Zhe Yang |
63 |
49.22% |
1 |
12.50% |
Yan-Hsuan Chuang |
47 |
36.72% |
1 |
12.50% |
Chin-Yen Lee |
6 |
4.69% |
1 |
12.50% |
Ping-Ke Shih |
5 |
3.91% |
1 |
12.50% |
Lee Jones |
3 |
2.34% |
1 |
12.50% |
Arnd Bergmann |
2 |
1.56% |
1 |
12.50% |
Larry Finger |
1 |
0.78% |
1 |
12.50% |
Aaron Ma |
1 |
0.78% |
1 |
12.50% |
Total |
128 |
|
8 |
|
// 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 "rtw8822c.h"
static const struct pci_device_id rtw_8822ce_id_table[] = {
{
PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xC822),
.driver_data = (kernel_ulong_t)&rtw8822c_hw_spec
},
{
PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xC82F),
.driver_data = (kernel_ulong_t)&rtw8822c_hw_spec
},
{}
};
MODULE_DEVICE_TABLE(pci, rtw_8822ce_id_table);
static struct pci_driver rtw_8822ce_driver = {
.name = "rtw_8822ce",
.id_table = rtw_8822ce_id_table,
.probe = rtw_pci_probe,
.remove = rtw_pci_remove,
.driver.pm = &rtw_pm_ops,
.shutdown = rtw_pci_shutdown,
};
module_pci_driver(rtw_8822ce_driver);
MODULE_AUTHOR("Realtek Corporation");
MODULE_DESCRIPTION("Realtek 802.11ac wireless 8822ce driver");
MODULE_LICENSE("Dual BSD/GPL");