pci.c (ba0fbe236fb8a7b992e82d6eafb03a600f5eba43) pci.c (416e87fcc780cae8d72cb9370fa0f46007faa69a)
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/* Copyright(c) 2018-2019 Realtek Corporation
3 */
4
5#include <linux/module.h>
6#include <linux/pci.h>
7#include "main.h"
8#include "pci.h"

--- 1580 unchanged lines hidden (view full) ---

1589 chip = rtwdev->chip;
1590
1591 if (chip->ops->shutdown)
1592 chip->ops->shutdown(rtwdev);
1593}
1594EXPORT_SYMBOL(rtw_pci_shutdown);
1595
1596static const struct pci_device_id rtw_pci_id_table[] = {
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/* Copyright(c) 2018-2019 Realtek Corporation
3 */
4
5#include <linux/module.h>
6#include <linux/pci.h>
7#include "main.h"
8#include "pci.h"

--- 1580 unchanged lines hidden (view full) ---

1589 chip = rtwdev->chip;
1590
1591 if (chip->ops->shutdown)
1592 chip->ops->shutdown(rtwdev);
1593}
1594EXPORT_SYMBOL(rtw_pci_shutdown);
1595
1596static const struct pci_device_id rtw_pci_id_table[] = {
1597#ifdef CONFIG_RTW88_8822BE
1598 { RTK_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xB822, rtw8822b_hw_spec) },
1599#endif
1600#ifdef CONFIG_RTW88_8723DE
1601 { RTK_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xD723, rtw8723d_hw_spec) },
1602#endif
1603 {},
1604};
1605MODULE_DEVICE_TABLE(pci, rtw_pci_id_table);
1606
1607static struct pci_driver rtw_pci_driver = {

--- 12 unchanged lines hidden ---
1597#ifdef CONFIG_RTW88_8723DE
1598 { RTK_PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0xD723, rtw8723d_hw_spec) },
1599#endif
1600 {},
1601};
1602MODULE_DEVICE_TABLE(pci, rtw_pci_id_table);
1603
1604static struct pci_driver rtw_pci_driver = {

--- 12 unchanged lines hidden ---