Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 297491
b: refs/heads/master
c: e721171
h: refs/heads/master
i:
  297489: 25a4771
  297487: 712946a
v: v3
  • Loading branch information
Vinod Koul committed Feb 1, 2012
1 parent 8b00770 commit 54c9d0b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ba7932334fbede4bb6a4ff4e635391ca7833203f
refs/heads/master: e7211718b3aa0365a723d9b8192e6f50236a1c67
2 changes: 2 additions & 0 deletions trunk/arch/arm/mach-shmobile/setup-sh7372.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,7 @@ static struct sh_dmae_pdata usb_dma0_platform_data = {
.dmaor_is_32bit = 1,
.needs_tend_set = 1,
.no_dmars = 1,
.slave_only = 1,
};

static struct resource sh7372_usb_dmae0_resources[] = {
Expand Down Expand Up @@ -723,6 +724,7 @@ static struct sh_dmae_pdata usb_dma1_platform_data = {
.dmaor_is_32bit = 1,
.needs_tend_set = 1,
.no_dmars = 1,
.slave_only = 1,
};

static struct resource sh7372_usb_dmae1_resources[] = {
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/dma/shdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,8 @@ static int __init sh_dmae_probe(struct platform_device *pdev)

INIT_LIST_HEAD(&shdev->common.channels);

dma_cap_set(DMA_MEMCPY, shdev->common.cap_mask);
if (!pdata->slave_only)
dma_cap_set(DMA_MEMCPY, shdev->common.cap_mask);
if (pdata->slave && pdata->slave_num)
dma_cap_set(DMA_SLAVE, shdev->common.cap_mask);

Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/sh_dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ struct sh_dmae_pdata {
unsigned int needs_tend_set:1;
unsigned int no_dmars:1;
unsigned int chclr_present:1;
unsigned int slave_only:1;
};

/* DMA register */
Expand Down

0 comments on commit 54c9d0b

Please sign in to comment.