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
34 lines
927 B
C
34 lines
927 B
C
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
/* Copyright Fiona Klute <fiona.klute@gmx.de> */
|
|
|
|
#include <linux/mmc/sdio_func.h>
|
|
#include <linux/mmc/sdio_ids.h>
|
|
#include <linux/module.h>
|
|
#include "main.h"
|
|
#include "rtw8703b.h"
|
|
#include "sdio.h"
|
|
|
|
static const struct sdio_device_id rtw_8723cs_id_table[] = {
|
|
{
|
|
SDIO_DEVICE(SDIO_VENDOR_ID_REALTEK,
|
|
SDIO_DEVICE_ID_REALTEK_RTW8723CS),
|
|
.driver_data = (kernel_ulong_t)&rtw8703b_hw_spec,
|
|
},
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(sdio, rtw_8723cs_id_table);
|
|
|
|
static struct sdio_driver rtw_8723cs_driver = {
|
|
.name = KBUILD_MODNAME,
|
|
.id_table = rtw_8723cs_id_table,
|
|
.probe = rtw_sdio_probe,
|
|
.remove = rtw_sdio_remove,
|
|
.drv = {
|
|
.pm = &rtw_sdio_pm_ops,
|
|
.shutdown = rtw_sdio_shutdown
|
|
}};
|
|
module_sdio_driver(rtw_8723cs_driver);
|
|
|
|
MODULE_AUTHOR("Fiona Klute <fiona.klute@gmx.de>");
|
|
MODULE_DESCRIPTION("Realtek 802.11n wireless 8723cs driver");
|
|
MODULE_LICENSE("Dual BSD/GPL");
|