linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] PCI: Remove the unused pci wrappers pci_pool_xxx()
@ 2021-10-18 12:41 Cai Huoqing
  2021-10-18 12:54 ` Krzysztof Wilczyński
  2021-10-18 15:56 ` Bjorn Helgaas
  0 siblings, 2 replies; 3+ messages in thread
From: Cai Huoqing @ 2021-10-18 12:41 UTC (permalink / raw)
  To: hch; +Cc: Cai Huoqing, Bjorn Helgaas, linux-pci, linux-kernel

The wrappers around dma_pool_xxx should go away, so
remove the unused pci wrappers.
Prefer using dma_pool_xxx() instead of the pci wrappers
pci_pool_xxx(), and the use of pci_pool_xxx was already
removed.

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
---
v1->v2: *Revert the implicit inclusion of dma_pool.h

 include/linux/pci.h | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/include/linux/pci.h b/include/linux/pci.h
index 94c75f3a4a19..74529d0388de 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -1500,19 +1500,8 @@ int pci_set_vga_state(struct pci_dev *pdev, bool decode,
 #define PCI_IRQ_ALL_TYPES \
 	(PCI_IRQ_LEGACY | PCI_IRQ_MSI | PCI_IRQ_MSIX)
 
-/* kmem_cache style wrapper around pci_alloc_consistent() */
-
 #include <linux/dmapool.h>
 
-#define	pci_pool dma_pool
-#define pci_pool_create(name, pdev, size, align, allocation) \
-		dma_pool_create(name, &pdev->dev, size, align, allocation)
-#define	pci_pool_destroy(pool) dma_pool_destroy(pool)
-#define	pci_pool_alloc(pool, flags, handle) dma_pool_alloc(pool, flags, handle)
-#define	pci_pool_zalloc(pool, flags, handle) \
-		dma_pool_zalloc(pool, flags, handle)
-#define	pci_pool_free(pool, vaddr, addr) dma_pool_free(pool, vaddr, addr)
-
 struct msix_entry {
 	u32	vector;	/* Kernel uses to write allocated vector */
 	u16	entry;	/* Driver uses to specify entry, OS writes */
-- 
2.25.1


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

end of thread, other threads:[~2021-10-18 15:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-18 12:41 [PATCH v2] PCI: Remove the unused pci wrappers pci_pool_xxx() Cai Huoqing
2021-10-18 12:54 ` Krzysztof Wilczyński
2021-10-18 15:56 ` Bjorn Helgaas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).