summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>2024-09-10 07:57:37 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-09-11 15:57:48 +0200
commita5f6f2f1ec6a1dbdd8e03a8d612f4b1aeb698b95 (patch)
treeccda82290d5f468e9d5f9d60ca5058e12c3f972e
parent75758f449760181a9baacd999d5150e6c75dd7e3 (diff)
staging: rtl8723bs: Remove unused function mac_reg_dump
Remove unused function mac_reg_dump. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/80e89052b30d8c495f375e43fc4c1deeea75a624.1725826273.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8723bs/core/rtw_debug.c10
-rw-r--r--drivers/staging/rtl8723bs/include/rtw_debug.h2
2 files changed, 0 insertions, 12 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_debug.c b/drivers/staging/rtl8723bs/core/rtw_debug.c
index e5a4baf1b78b..bfce632e037e 100644
--- a/drivers/staging/rtl8723bs/core/rtw_debug.c
+++ b/drivers/staging/rtl8723bs/core/rtw_debug.c
@@ -22,13 +22,3 @@ static void dump_4_regs(struct adapter *adapter, int offset)
netdev_dbg(adapter->pnetdev, "0x%03x 0x%08x 0x%08x 0x%08x 0x%08x\n",
i, reg[0], reg[1], reg[2], reg[3]);
}
-
-void mac_reg_dump(struct adapter *adapter)
-{
- int i;
-
- netdev_dbg(adapter->pnetdev, "======= MAC REG =======\n");
-
- for (i = 0x0; i < 0x800; i += 4)
- dump_4_regs(adapter, i);
-}
diff --git a/drivers/staging/rtl8723bs/include/rtw_debug.h b/drivers/staging/rtl8723bs/include/rtw_debug.h
index 9948fd0f7e91..c417a26de166 100644
--- a/drivers/staging/rtl8723bs/include/rtw_debug.h
+++ b/drivers/staging/rtl8723bs/include/rtw_debug.h
@@ -7,6 +7,4 @@
#ifndef __RTW_DEBUG_H__
#define __RTW_DEBUG_H__
-void mac_reg_dump(struct adapter *adapter);
-
#endif /* __RTW_DEBUG_H__ */