mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-05 20:30:41 +00:00

The rtw88 module names all start with the "rtw88_" prefix, but the messages in dmesg mostly use the "rtw_" prefix. The messages from rtw88_8723cs don't even have the underscore. Use the KBUILD_MODNAME macro in every driver. This ensures that the messages in dmesg will always use the module name. Before: Mar 17 15:54:19 ideapad2 kernel: rtw_8814au 2-4:1.0: Firmware version 33.6.0, H2C version 6 After: Mar 17 16:33:35 ideapad2 kernel: rtw88_8814au 2-4:1.0: Firmware version 33.6.0, H2C version 6 Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://patch.msgid.link/29cd29ba-bc51-4d5b-ad48-a43c6ce72d56@gmail.com
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
/* Copyright(c) 2018-2019 Realtek Corporation
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/usb.h>
|
|
#include "main.h"
|
|
#include "rtw8723d.h"
|
|
#include "usb.h"
|
|
|
|
static const struct usb_device_id rtw_8723du_id_table[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(RTW_USB_VENDOR_ID_REALTEK, 0xd723, 0xff, 0xff, 0xff),
|
|
.driver_info = (kernel_ulong_t)&(rtw8723d_hw_spec) }, /* 8723DU 1*1 */
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xd611, 0xff, 0xff, 0xff),
|
|
.driver_info = (kernel_ulong_t)&(rtw8723d_hw_spec) }, /* Edimax EW-7611ULB V2 */
|
|
{ },
|
|
};
|
|
MODULE_DEVICE_TABLE(usb, rtw_8723du_id_table);
|
|
|
|
static int rtw8723du_probe(struct usb_interface *intf,
|
|
const struct usb_device_id *id)
|
|
{
|
|
return rtw_usb_probe(intf, id);
|
|
}
|
|
|
|
static struct usb_driver rtw_8723du_driver = {
|
|
.name = KBUILD_MODNAME,
|
|
.id_table = rtw_8723du_id_table,
|
|
.probe = rtw8723du_probe,
|
|
.disconnect = rtw_usb_disconnect,
|
|
};
|
|
module_usb_driver(rtw_8723du_driver);
|
|
|
|
MODULE_AUTHOR("Hans Ulli Kroll <linux@ulli-kroll.de>");
|
|
MODULE_DESCRIPTION("Realtek 802.11n wireless 8723du driver");
|
|
MODULE_LICENSE("Dual BSD/GPL");
|