Re: [PATCH 1/2] net: systemport: Remove unused txchk accessors

From: Florian Fainelli
Date: Tue Oct 15 2024 - 13:30:48 EST


On 10/15/24 10:24, Florian Fainelli wrote:
Vladimir reported the following warning with clang-16 and W=1:

warning: unused function 'txchk_readl' [-Wunused-function]
BCM_SYSPORT_IO_MACRO(txchk, SYS_PORT_TXCHK_OFFSET);
note: expanded from macro 'BCM_SYSPORT_IO_MACRO'

warning: unused function 'txchk_writel' [-Wunused-function]
note: expanded from macro 'BCM_SYSPORT_IO_MACRO'

warning: unused function 'tbuf_readl' [-Wunused-function]
BCM_SYSPORT_IO_MACRO(tbuf, SYS_PORT_TBUF_OFFSET);
note: expanded from macro 'BCM_SYSPORT_IO_MACRO'

warning: unused function 'tbuf_writel' [-Wunused-function]
note: expanded from macro 'BCM_SYSPORT_IO_MACRO'

The TXCHK block is not being accessed, remove the IO macros used to
access this block. No functional impact.

Reported-by: Vladimir Oltean <vladimir.oltean@xxxxxxx>
Signed-off-by: Florian Fainelli <florian.fainelli@xxxxxxxxxxxx>

Forgot to remove the tbuf accessor here as well, will post again in 24hrs.
--
Florian