diff mbox series

spi/bcm63xx: Remove the unused function bcm_spi_readw()

Message ID 20230228023243.118429-1-jiapeng.chong@linux.alibaba.com (mailing list archive)
State Accepted
Commit f58ab0fa7a23e5e1f55c0c1df266bb0daf1c19cc
Headers show
Series spi/bcm63xx: Remove the unused function bcm_spi_readw() | expand

Commit Message

Jiapeng Chong Feb. 28, 2023, 2:32 a.m. UTC
The function bcm_spi_readw is defined in the spi-bcm63xx.c file, but
not called elsewhere, so remove this unused function.

drivers/spi/spi-bcm63xx.c:160:19: warning: unused function 'bcm_spi_readw'.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=4242
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 drivers/spi/spi-bcm63xx.c | 10 ----------
 1 file changed, 10 deletions(-)

Comments

Mark Brown March 6, 2023, 1:05 p.m. UTC | #1
On Tue, 28 Feb 2023 10:32:43 +0800, Jiapeng Chong wrote:
> The function bcm_spi_readw is defined in the spi-bcm63xx.c file, but
> not called elsewhere, so remove this unused function.
> 
> drivers/spi/spi-bcm63xx.c:160:19: warning: unused function 'bcm_spi_readw'.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi/bcm63xx: Remove the unused function bcm_spi_readw()
      commit: f58ab0fa7a23e5e1f55c0c1df266bb0daf1c19cc

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/drivers/spi/spi-bcm63xx.c b/drivers/spi/spi-bcm63xx.c
index 3686d78c44a6..7279e6b883c1 100644
--- a/drivers/spi/spi-bcm63xx.c
+++ b/drivers/spi/spi-bcm63xx.c
@@ -157,16 +157,6 @@  static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
 	return readb(bs->regs + bs->reg_offsets[offset]);
 }
 
-static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
-				unsigned int offset)
-{
-#ifdef CONFIG_CPU_BIG_ENDIAN
-	return ioread16be(bs->regs + bs->reg_offsets[offset]);
-#else
-	return readw(bs->regs + bs->reg_offsets[offset]);
-#endif
-}
-
 static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
 				  u8 value, unsigned int offset)
 {