Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188513
b: refs/heads/master
c: 2bc4aff
h: refs/heads/master
i:
  188511: b854c30
v: v3
  • Loading branch information
Frans Pop authored and Mike Frysinger committed Mar 9, 2010
1 parent 5f25241 commit b6011c0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: fe5b25c09873faee44077ee6ff8f23eee61b0fa0
refs/heads/master: 2bc4affe9c374983220c1a5d5566ce67c95384fc
10 changes: 5 additions & 5 deletions trunk/arch/blackfin/kernel/bfin_dma_5xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ late_initcall(proc_dma_init);
*/
int request_dma(unsigned int channel, const char *device_id)
{
pr_debug("request_dma() : BEGIN \n");
pr_debug("request_dma() : BEGIN\n");

if (device_id == NULL)
printk(KERN_WARNING "request_dma(%u): no device_id given\n", channel);
Expand All @@ -107,7 +107,7 @@ int request_dma(unsigned int channel, const char *device_id)
#endif

if (atomic_cmpxchg(&dma_ch[channel].chan_status, 0, 1)) {
pr_debug("DMA CHANNEL IN USE \n");
pr_debug("DMA CHANNEL IN USE\n");
return -EBUSY;
}

Expand All @@ -131,7 +131,7 @@ int request_dma(unsigned int channel, const char *device_id)
* you have to request DMA, before doing any operations on
* descriptor/channel
*/
pr_debug("request_dma() : END \n");
pr_debug("request_dma() : END\n");
return 0;
}
EXPORT_SYMBOL(request_dma);
Expand Down Expand Up @@ -171,7 +171,7 @@ static void clear_dma_buffer(unsigned int channel)

void free_dma(unsigned int channel)
{
pr_debug("freedma() : BEGIN \n");
pr_debug("freedma() : BEGIN\n");
BUG_ON(channel >= MAX_DMA_CHANNELS ||
!atomic_read(&dma_ch[channel].chan_status));

Expand All @@ -185,7 +185,7 @@ void free_dma(unsigned int channel)
/* Clear the DMA Variable in the Channel */
atomic_set(&dma_ch[channel].chan_status, 0);

pr_debug("freedma() : END \n");
pr_debug("freedma() : END\n");
}
EXPORT_SYMBOL(free_dma);

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/blackfin/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ void dump_bfin_mem(struct pt_regs *fp)
/* And the last RETI points to the current userspace context */
if ((fp + 1)->pc >= current->mm->start_code &&
(fp + 1)->pc <= current->mm->end_code) {
verbose_printk(KERN_NOTICE "It might be better to look around here : \n");
verbose_printk(KERN_NOTICE "It might be better to look around here :\n");
verbose_printk(KERN_NOTICE "-------------------------------------------\n");
show_regs(fp + 1);
verbose_printk(KERN_NOTICE "-------------------------------------------\n");
Expand Down

0 comments on commit b6011c0

Please sign in to comment.