* [PATCH 1/4] spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device info
@ 2011-12-09 4:11 Tomoya MORINAGA
[not found] ` <1323403905-3432-1-git-send-email-tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-03-09 23:45 ` Grant Likely
0 siblings, 2 replies; 4+ messages in thread
From: Tomoya MORINAGA @ 2011-12-09 4:11 UTC (permalink / raw)
To: Grant Likely, spi-devel-general, linux-kernel
Cc: qi.wang, yong.y.wang, joel.clark, kok.howg.ewe, Wolfram Sang,
Tomoya MORINAGA
Signed-off-by: Tomoya MORINAGA <tomoya.rohm@gmail.com>
---
drivers/spi/spi-topcliff-pch.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/spi/spi-topcliff-pch.c b/drivers/spi/spi-topcliff-pch.c
index 99ec279..fcd9462 100644
--- a/drivers/spi/spi-topcliff-pch.c
+++ b/drivers/spi/spi-topcliff-pch.c
@@ -920,7 +920,8 @@ static void pch_spi_request_dma(struct pch_spi_data *data, int bpw)
dma_cap_set(DMA_SLAVE, mask);
/* Get DMA's dev information */
- dma_dev = pci_get_bus_and_slot(2, PCI_DEVFN(12, 0));
+ dma_dev = pci_get_bus_and_slot(data->board_dat->pdev->bus->number,
+ PCI_DEVFN(12, 0));
/* Set Tx DMA */
param = &dma->param_tx;
--
1.7.4.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
[parent not found: <1323403905-3432-1-git-send-email-tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH 1/4] spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device info
[not found] ` <1323403905-3432-1-git-send-email-tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2012-01-19 2:34 ` Tomoya MORINAGA
[not found] ` <CANKRQniO55ZO+15Wt63Jtj4_MJk3b04_KXZT4bcrOaJjBedzyQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Tomoya MORINAGA @ 2012-01-19 2:34 UTC (permalink / raw)
To: Grant Likely, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: kok.howg.ewe-ral2JQCrhuEAvxtiuMwx3w,
qi.wang-ral2JQCrhuEAvxtiuMwx3w, joel.clark-ral2JQCrhuEAvxtiuMwx3w,
yong.y.wang-ral2JQCrhuEAvxtiuMwx3w
Hi Grant.
More than a month has been passed since I posted the following patches.
However still not reviewed yet.
[PATCH 1/4] spi-topcliff-pch: Modify pci-bus number dynamically to get
DMA device info
[PATCH 2/4] spi-topcliff-pch: Fix issue for transmitting over 4KByte
[PATCH 3/4][RESEND] spi-topcliff-pch: supports a spi mode setup and
bit order setup by IO control
[PATCH 4/4] spi-topcliff-pch: add recovery processing in case wait-event timeout
Could you review these ?
thanks,
tomoya
2011/12/9 Tomoya MORINAGA <tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:
> Signed-off-by: Tomoya MORINAGA <tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
> drivers/spi/spi-topcliff-pch.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/spi/spi-topcliff-pch.c b/drivers/spi/spi-topcliff-pch.c
> index 99ec279..fcd9462 100644
> --- a/drivers/spi/spi-topcliff-pch.c
> +++ b/drivers/spi/spi-topcliff-pch.c
> @@ -920,7 +920,8 @@ static void pch_spi_request_dma(struct pch_spi_data *data, int bpw)
> dma_cap_set(DMA_SLAVE, mask);
>
> /* Get DMA's dev information */
> - dma_dev = pci_get_bus_and_slot(2, PCI_DEVFN(12, 0));
> + dma_dev = pci_get_bus_and_slot(data->board_dat->pdev->bus->number,
> + PCI_DEVFN(12, 0));
>
> /* Set Tx DMA */
> param = &dma->param_tx;
> --
> 1.7.4.4
>
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/4] spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device info
2011-12-09 4:11 [PATCH 1/4] spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device info Tomoya MORINAGA
[not found] ` <1323403905-3432-1-git-send-email-tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2012-03-09 23:45 ` Grant Likely
1 sibling, 0 replies; 4+ messages in thread
From: Grant Likely @ 2012-03-09 23:45 UTC (permalink / raw)
To: Tomoya MORINAGA, spi-devel-general, linux-kernel
Cc: qi.wang, yong.y.wang, joel.clark, kok.howg.ewe, Wolfram Sang,
Tomoya MORINAGA
On Fri, 9 Dec 2011 13:11:42 +0900, Tomoya MORINAGA <tomoya.rohm@gmail.com> wrote:
> Signed-off-by: Tomoya MORINAGA <tomoya.rohm@gmail.com>
> ---
> drivers/spi/spi-topcliff-pch.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/spi/spi-topcliff-pch.c b/drivers/spi/spi-topcliff-pch.c
> index 99ec279..fcd9462 100644
> --- a/drivers/spi/spi-topcliff-pch.c
> +++ b/drivers/spi/spi-topcliff-pch.c
> @@ -920,7 +920,8 @@ static void pch_spi_request_dma(struct pch_spi_data *data, int bpw)
> dma_cap_set(DMA_SLAVE, mask);
>
> /* Get DMA's dev information */
> - dma_dev = pci_get_bus_and_slot(2, PCI_DEVFN(12, 0));
> + dma_dev = pci_get_bus_and_slot(data->board_dat->pdev->bus->number,
> + PCI_DEVFN(12, 0));
Applied, thanks
g.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-09 23:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-09 4:11 [PATCH 1/4] spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device info Tomoya MORINAGA
[not found] ` <1323403905-3432-1-git-send-email-tomoya.rohm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-01-19 2:34 ` Tomoya MORINAGA
[not found] ` <CANKRQniO55ZO+15Wt63Jtj4_MJk3b04_KXZT4bcrOaJjBedzyQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-03-09 23:50 ` Grant Likely
2012-03-09 23:45 ` Grant Likely
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).