public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next v2] misc: pci_endpoint_test: Remove some unused functions
@ 2024-07-04  2:32 Jiapeng Chong
  2024-07-04  7:14 ` Krzysztof Wilczyński
  2024-07-06  3:18 ` Krzysztof Wilczyński
  0 siblings, 2 replies; 7+ messages in thread
From: Jiapeng Chong @ 2024-07-04  2:32 UTC (permalink / raw)
  To: manivannan.sadhasivam
  Cc: kw, kishon, arnd, gregkh, linux-pci, linux-kernel, Jiapeng Chong,
	Abaci Robot

These functions are defined in the pci_endpoint_test.c file, but not
called elsewhere, so delete these unused functions.

drivers/misc/pci_endpoint_test.c:144:19: warning: unused function 'pci_endpoint_test_bar_readl'.
drivers/misc/pci_endpoint_test.c:150:20: warning: unused function 'pci_endpoint_test_bar_writel'.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=9064
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
Changes in v2:
  -Modify the branch name in the topic. 

 drivers/misc/pci_endpoint_test.c | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/drivers/misc/pci_endpoint_test.c b/drivers/misc/pci_endpoint_test.c
index edced893221e..3aaaf47fa4ee 100644
--- a/drivers/misc/pci_endpoint_test.c
+++ b/drivers/misc/pci_endpoint_test.c
@@ -144,18 +144,6 @@ static inline void pci_endpoint_test_writel(struct pci_endpoint_test *test,
 	writel(value, test->base + offset);
 }
 
-static inline u32 pci_endpoint_test_bar_readl(struct pci_endpoint_test *test,
-					      int bar, int offset)
-{
-	return readl(test->bar[bar] + offset);
-}
-
-static inline void pci_endpoint_test_bar_writel(struct pci_endpoint_test *test,
-						int bar, u32 offset, u32 value)
-{
-	writel(value, test->bar[bar] + offset);
-}
-
 static irqreturn_t pci_endpoint_test_irqhandler(int irq, void *dev_id)
 {
 	struct pci_endpoint_test *test = dev_id;
-- 
2.20.1.7.g153144c


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-07-06  3:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-04  2:32 [PATCH -next v2] misc: pci_endpoint_test: Remove some unused functions Jiapeng Chong
2024-07-04  7:14 ` Krzysztof Wilczyński
2024-07-04 12:58   ` Greg KH
2024-07-04 14:00     ` Rick Wertenbroek
2024-07-04 13:49   ` Rick Wertenbroek
2024-07-04 14:22     ` Krzysztof Wilczyński
2024-07-06  3:18 ` Krzysztof Wilczyński

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox