From: Greg Kroah-Hartman Date: Mon, 20 May 2019 08:47:15 +0000 (+0200) Subject: staging: kpc2000: dma_common_defs.h: remove unused inline functions X-Git-Tag: v5.4-rc1~602^2~444 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=078ef50c2a1a7a6e86f5756c501f727b0e527c05;p=platform%2Fkernel%2Flinux-rpi.git staging: kpc2000: dma_common_defs.h: remove unused inline functions The functions GetBackEndStatus() and BackEndControlSetClear() are never used by any code, so just remove them. Cc: Matt Sickler Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/kpc2000/kpc2000/dma_common_defs.h b/drivers/staging/kpc2000/kpc2000/dma_common_defs.h index f35e636..efc35c8 100644 --- a/drivers/staging/kpc2000/kpc2000/dma_common_defs.h +++ b/drivers/staging/kpc2000/kpc2000/dma_common_defs.h @@ -25,19 +25,5 @@ static inline void SetBackEndControl(void __iomem *regs, u32 value) { writel(value, regs + 0); } -static inline u32 GetBackEndStatus(void __iomem *regs) -{ - return readl(regs + 0); -} - -static inline u32 BackEndControlSetClear(void __iomem *regs, u32 set_bits, u32 clear_bits) -{ - u32 start_val = GetBackEndStatus(regs); - u32 new_val = start_val; - new_val &= ~clear_bits; - new_val |= set_bits; - SetBackEndControl(regs, new_val); - return start_val; -} #endif /* KPC_DMA_COMMON_DEFS_H_ */