staging: rtl8723bs: remove unused rtw_sprintf() macro

Remove the unused rtw_sprintf() macro, which is a wrapper around the
standard Kernel function snprintf().

Signed-off-by: Nikolay Kulikov <nikolayof23@gmail.com>
Link: https://patch.msgid.link/20260407143622.9767-5-nikolayof23@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nikolay Kulikov 2026-04-07 17:33:29 +03:00 committed by Greg Kroah-Hartman
parent e387a9ef06
commit 5c534b5f7f

View File

@ -87,10 +87,5 @@ bool rtw_cbuf_push(struct rtw_cbuf *cbuf, void *buf);
void *rtw_cbuf_pop(struct rtw_cbuf *cbuf);
struct rtw_cbuf *rtw_cbuf_alloc(u32 size);
/* String handler */
/*
* Write formatted output to sized buffer
*/
#define rtw_sprintf(buf, size, format, arg...) snprintf(buf, size, format, ##arg)
#endif