mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +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
36 lines
983 B
C
36 lines
983 B
C
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
/* Copyright(c) Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
*/
|
|
|
|
#include <linux/mmc/sdio_func.h>
|
|
#include <linux/mmc/sdio_ids.h>
|
|
#include <linux/module.h>
|
|
#include "main.h"
|
|
#include "rtw8822c.h"
|
|
#include "sdio.h"
|
|
|
|
static const struct sdio_device_id rtw_8822cs_id_table[] = {
|
|
{
|
|
SDIO_DEVICE(SDIO_VENDOR_ID_REALTEK,
|
|
SDIO_DEVICE_ID_REALTEK_RTW8822CS),
|
|
.driver_data = (kernel_ulong_t)&rtw8822c_hw_spec,
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(sdio, rtw_8822cs_id_table);
|
|
|
|
static struct sdio_driver rtw_8822cs_driver = {
|
|
.name = KBUILD_MODNAME,
|
|
.probe = rtw_sdio_probe,
|
|
.remove = rtw_sdio_remove,
|
|
.id_table = rtw_8822cs_id_table,
|
|
.drv = {
|
|
.pm = &rtw_sdio_pm_ops,
|
|
.shutdown = rtw_sdio_shutdown,
|
|
}
|
|
};
|
|
module_sdio_driver(rtw_8822cs_driver);
|
|
|
|
MODULE_AUTHOR("Martin Blumenstingl <martin.blumenstingl@googlemail.com>");
|
|
MODULE_DESCRIPTION("Realtek 802.11ac wireless 8822cs driver");
|
|
MODULE_LICENSE("Dual BSD/GPL");
|