Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 94069
b: refs/heads/master
c: f85e7cd
h: refs/heads/master
i:
  94067: 1f46a46
v: v3
  • Loading branch information
Harvey Harrison authored and Linus Torvalds committed Apr 28, 2008
1 parent 2026e15 commit 14783f7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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: 6feef6e5f23d5a3d8a614ab8ea392dfa54c7365c
refs/heads/master: f85e7cdc3fd0db65ef1442476b82ced0f01c5c19
10 changes: 5 additions & 5 deletions trunk/arch/m68k/kernel/ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ int setup_irq(unsigned int irq, struct irq_node *node)

if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
printk("%s: Incorrect IRQ %d from %s\n",
__FUNCTION__, irq, node->devname);
__func__, irq, node->devname);
return -ENXIO;
}

Expand Down Expand Up @@ -249,7 +249,7 @@ void free_irq(unsigned int irq, void *dev_id)
unsigned long flags;

if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
printk("%s: Incorrect IRQ %d\n", __FUNCTION__, irq);
printk("%s: Incorrect IRQ %d\n", __func__, irq);
return;
}

Expand All @@ -267,7 +267,7 @@ void free_irq(unsigned int irq, void *dev_id)
node->handler = NULL;
} else
printk("%s: Removing probably wrong IRQ %d\n",
__FUNCTION__, irq);
__func__, irq);

if (!irq_list[irq]) {
if (contr->shutdown)
Expand All @@ -288,7 +288,7 @@ void enable_irq(unsigned int irq)

if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
printk("%s: Incorrect IRQ %d\n",
__FUNCTION__, irq);
__func__, irq);
return;
}

Expand All @@ -312,7 +312,7 @@ void disable_irq(unsigned int irq)

if (irq >= NR_IRQS || !(contr = irq_controller[irq])) {
printk("%s: Incorrect IRQ %d\n",
__FUNCTION__, irq);
__func__, irq);
return;
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/m68k/mac/oss.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void oss_irq_enable(int irq) {
break;
#ifdef DEBUG_IRQUSE
default:
printk("%s unknown irq %d\n",__FUNCTION__, irq);
printk("%s unknown irq %d\n", __func__, irq);
break;
#endif
}
Expand Down Expand Up @@ -230,7 +230,7 @@ void oss_irq_disable(int irq) {
break;
#ifdef DEBUG_IRQUSE
default:
printk("%s unknown irq %d\n", __FUNCTION__, irq);
printk("%s unknown irq %d\n", __func__, irq);
break;
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/q40/q40ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static int q40_irq_startup(unsigned int irq)
switch (irq) {
case 1: case 2: case 8: case 9:
case 11: case 12: case 13:
printk("%s: ISA IRQ %d not implemented by HW\n", __FUNCTION__, irq);
printk("%s: ISA IRQ %d not implemented by HW\n", __func__, irq);
return -ENXIO;
}
return 0;
Expand Down

0 comments on commit 14783f7

Please sign in to comment.