Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 358502
b: refs/heads/master
c: 5ea7caf
h: refs/heads/master
v: v3
  • Loading branch information
Laxman Dewangan authored and Vinod Koul committed Jan 8, 2013
1 parent 0c33a24 commit e750850
Show file tree
Hide file tree
Showing 2 changed files with 13 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: 1b140908c4cda43c653bb080c244d112e619008f
refs/heads/master: 5ea7caf30debefc1c4319f77146288fd5e92a803
13 changes: 12 additions & 1 deletion trunk/drivers/dma/tegra20-apb-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1217,8 +1217,19 @@ static const struct tegra_dma_chip_data tegra30_dma_chip_data = {
.support_channel_pause = false,
};

static const struct of_device_id tegra_dma_of_match[] __devinitconst = {
/* Tegra114 specific DMA controller information */
static const struct tegra_dma_chip_data tegra114_dma_chip_data = {
.nr_channels = 32,
.max_dma_count = 1024UL * 64,
.support_channel_pause = true,
};


static const struct of_device_id tegra_dma_of_match[] = {
{
.compatible = "nvidia,tegra114-apbdma",
.data = &tegra114_dma_chip_data,
}, {
.compatible = "nvidia,tegra30-apbdma",
.data = &tegra30_dma_chip_data,
}, {
Expand Down

0 comments on commit e750850

Please sign in to comment.