37 lines · c
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause2/* Copyright(c) 2018-2019 Realtek Corporation3 */4 5#include <linux/module.h>6#include <linux/usb.h>7#include "main.h"8#include "rtw8723d.h"9#include "usb.h"10 11static const struct usb_device_id rtw_8723du_id_table[] = {12 { USB_DEVICE_AND_INTERFACE_INFO(RTW_USB_VENDOR_ID_REALTEK, 0xd723, 0xff, 0xff, 0xff),13 .driver_info = (kernel_ulong_t)&(rtw8723d_hw_spec) }, /* 8723DU 1*1 */14 { USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xd611, 0xff, 0xff, 0xff),15 .driver_info = (kernel_ulong_t)&(rtw8723d_hw_spec) }, /* Edimax EW-7611ULB V2 */16 { },17};18MODULE_DEVICE_TABLE(usb, rtw_8723du_id_table);19 20static int rtw8723du_probe(struct usb_interface *intf,21 const struct usb_device_id *id)22{23 return rtw_usb_probe(intf, id);24}25 26static struct usb_driver rtw_8723du_driver = {27 .name = "rtw_8723du",28 .id_table = rtw_8723du_id_table,29 .probe = rtw8723du_probe,30 .disconnect = rtw_usb_disconnect,31};32module_usb_driver(rtw_8723du_driver);33 34MODULE_AUTHOR("Hans Ulli Kroll <linux@ulli-kroll.de>");35MODULE_DESCRIPTION("Realtek 802.11n wireless 8723du driver");36MODULE_LICENSE("Dual BSD/GPL");37