summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-tegra/dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/dma.c b/arch/arm/mach-tegra/dma.c
index 349028896860..0cc97b707417 100644
--- a/arch/arm/mach-tegra/dma.c
+++ b/arch/arm/mach-tegra/dma.c
@@ -575,7 +575,7 @@ static void tegra_dma_init_hw(struct tegra_dma_channel *ch)
static void handle_oneshot_dma(struct tegra_dma_channel *ch)
{
- static struct tegra_dma_req *req;
+ struct tegra_dma_req *req;
spin_lock(&ch->lock);
if (list_empty(&ch->list)) {
@@ -616,7 +616,7 @@ static void handle_oneshot_dma(struct tegra_dma_channel *ch)
static void handle_continuous_dma(struct tegra_dma_channel *ch)
{
- static struct tegra_dma_req *req;
+ struct tegra_dma_req *req;
struct tegra_dma_req *next_req;
spin_lock(&ch->lock);