* [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration
@ 2016-03-06 15:15 Christoph Hellwig
2016-03-07 3:31 ` David Miller
2016-03-07 14:53 ` David Howells
0 siblings, 2 replies; 5+ messages in thread
From: Christoph Hellwig @ 2016-03-06 15:15 UTC (permalink / raw)
To: bhelgaas; +Cc: linux-pci, linux-arch, linux-kernel
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
arch/frv/include/asm/pci.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/arch/frv/include/asm/pci.h b/arch/frv/include/asm/pci.h
index e43d22c..7e96b57 100644
--- a/arch/frv/include/asm/pci.h
+++ b/arch/frv/include/asm/pci.h
@@ -32,12 +32,6 @@ extern void consistent_sync_page(struct page *page, unsigned long offset,
size_t size, int direction);
#endif
-extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
- dma_addr_t *dma_handle);
-
-extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
- void *vaddr, dma_addr_t dma_handle);
-
/* Return the index of the PCI controller for device PDEV. */
#define pci_controller_num(PDEV) (0)
--
2.1.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration
2016-03-06 15:15 [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration Christoph Hellwig
@ 2016-03-07 3:31 ` David Miller
2016-03-07 14:53 ` David Howells
1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2016-03-07 3:31 UTC (permalink / raw)
To: hch; +Cc: bhelgaas, linux-pci, linux-arch, linux-kernel
From: Christoph Hellwig <hch@lst.de>
Date: Sun, 6 Mar 2016 16:15:38 +0100
> Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: David S. Miller <davem@davemloft.net>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration
2016-03-06 15:15 [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration Christoph Hellwig
2016-03-07 3:31 ` David Miller
@ 2016-03-07 14:53 ` David Howells
1 sibling, 0 replies; 5+ messages in thread
From: David Howells @ 2016-03-07 14:53 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: dhowells, bhelgaas, linux-pci, linux-arch, linux-kernel
Acked-by: David Howells <dhowells@redhat.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* two small PCI header cleanups
@ 2016-03-06 15:17 Christoph Hellwig
2016-03-06 15:17 ` [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration Christoph Hellwig
0 siblings, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2016-03-06 15:17 UTC (permalink / raw)
To: bhelgaas; +Cc: linux-pci, linux-arch, linux-kernel
Move a header from asm-generic to Linux because it isn't a generic arch
implementation, and also implement the pci_dma_* helpers in common code.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration
2016-03-06 15:17 two small PCI header cleanups Christoph Hellwig
@ 2016-03-06 15:17 ` Christoph Hellwig
2016-03-07 17:57 ` Bjorn Helgaas
0 siblings, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2016-03-06 15:17 UTC (permalink / raw)
To: bhelgaas; +Cc: linux-pci, linux-arch, linux-kernel
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
arch/frv/include/asm/pci.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/arch/frv/include/asm/pci.h b/arch/frv/include/asm/pci.h
index e43d22c..7e96b57 100644
--- a/arch/frv/include/asm/pci.h
+++ b/arch/frv/include/asm/pci.h
@@ -32,12 +32,6 @@ extern void consistent_sync_page(struct page *page, unsigned long offset,
size_t size, int direction);
#endif
-extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
- dma_addr_t *dma_handle);
-
-extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
- void *vaddr, dma_addr_t dma_handle);
-
/* Return the index of the PCI controller for device PDEV. */
#define pci_controller_num(PDEV) (0)
--
2.1.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration
2016-03-06 15:17 ` [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration Christoph Hellwig
@ 2016-03-07 17:57 ` Bjorn Helgaas
0 siblings, 0 replies; 5+ messages in thread
From: Bjorn Helgaas @ 2016-03-07 17:57 UTC (permalink / raw)
To: Christoph Hellwig
Cc: bhelgaas, linux-pci, linux-arch, linux-kernel, David S. Miller,
David Howells
[+cc David M, David H]
On Sun, Mar 06, 2016 at 04:17:53PM +0100, Christoph Hellwig wrote:
> Signed-off-by: Christoph Hellwig <hch@lst.de>
Applied with acks from David M & David H to pci/misc for v4.6, thanks!
> ---
> arch/frv/include/asm/pci.h | 6 ------
> 1 file changed, 6 deletions(-)
>
> diff --git a/arch/frv/include/asm/pci.h b/arch/frv/include/asm/pci.h
> index e43d22c..7e96b57 100644
> --- a/arch/frv/include/asm/pci.h
> +++ b/arch/frv/include/asm/pci.h
> @@ -32,12 +32,6 @@ extern void consistent_sync_page(struct page *page, unsigned long offset,
> size_t size, int direction);
> #endif
>
> -extern void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
> - dma_addr_t *dma_handle);
> -
> -extern void pci_free_consistent(struct pci_dev *hwdev, size_t size,
> - void *vaddr, dma_addr_t dma_handle);
> -
> /* Return the index of the PCI controller for device PDEV. */
> #define pci_controller_num(PDEV) (0)
>
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-arch" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-03-07 17:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 15:15 [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration Christoph Hellwig
2016-03-07 3:31 ` David Miller
2016-03-07 14:53 ` David Howells
-- strict thread matches above, loose matches on Subject: below --
2016-03-06 15:17 two small PCI header cleanups Christoph Hellwig
2016-03-06 15:17 ` [PATCH 1/3] frv: remove stray pci_{alloc,free}_consistent declaration Christoph Hellwig
2016-03-07 17:57 ` 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).