29 lines
816 B
C
29 lines
816 B
C
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
/* Copyright(c) 2024 Realtek Corporation
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/usb.h>
|
|
#include "main.h"
|
|
#include "rtw8821a.h"
|
|
#include "usb.h"
|
|
|
|
static const struct usb_device_id rtw_8821au_id_table[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x011e, 0xff, 0xff, 0xff),
|
|
.driver_info = (kernel_ulong_t)&(rtw8821a_hw_spec) },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(usb, rtw_8821au_id_table);
|
|
|
|
static struct usb_driver rtw_8821au_driver = {
|
|
.name = "rtw_8821au",
|
|
.id_table = rtw_8821au_id_table,
|
|
.probe = rtw_usb_probe,
|
|
.disconnect = rtw_usb_disconnect,
|
|
};
|
|
module_usb_driver(rtw_8821au_driver);
|
|
|
|
MODULE_AUTHOR("Bitterblue Smith <rtl8821cerfe2@gmail.com>");
|
|
MODULE_DESCRIPTION("Realtek 802.11ac wireless 8821au/8811au driver");
|
|
MODULE_LICENSE("Dual BSD/GPL");
|