Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293966
b: refs/heads/master
c: 5ddebe5
h: refs/heads/master
v: v3
  • Loading branch information
Bob Liu committed Mar 21, 2012
1 parent 6247a73 commit 316b93b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 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: eeec0a13e5d360fe11d8354098b915f0e464b7d3
refs/heads/master: 5ddebe576c08b67003b4e2c689891afcc466e3d4
2 changes: 1 addition & 1 deletion trunk/arch/blackfin/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extra-y := init_task.o vmlinux.lds
obj-y := \
entry.o process.o bfin_ksyms.o ptrace.o setup.o signal.o \
sys_bfin.o traps.o irqchip.o dma-mapping.o flat.o \
fixed_code.o reboot.o bfin_gpio.o bfin_dma_5xx.o \
fixed_code.o reboot.o bfin_gpio.o bfin_dma.o \
exception.o dumpstack.o

ifeq ($(CONFIG_GENERIC_CLOCKEVENTS),y)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* bfin_dma_5xx.c - Blackfin DMA implementation
* bfin_dma.c - Blackfin DMA implementation
*
* Copyright 2004-2008 Analog Devices Inc.
*
Expand Down Expand Up @@ -218,6 +218,9 @@ int blackfin_dma_suspend(void)
dma_ch[i].saved_peripheral_map = dma_ch[i].regs->peripheral_map;
}

#if ANOMALY_05000480
bfin_write_DMAC_TC_PER(0x0);
#endif
return 0;
}

Expand All @@ -231,6 +234,9 @@ void blackfin_dma_resume(void)
if (i < MAX_DMA_SUSPEND_CHANNELS)
dma_ch[i].regs->peripheral_map = dma_ch[i].saved_peripheral_map;
}
#if ANOMALY_05000480
bfin_write_DMAC_TC_PER(0x0111);
#endif
}
#endif

Expand Down

0 comments on commit 316b93b

Please sign in to comment.