Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243307
b: refs/heads/master
c: 5c217b6
h: refs/heads/master
i:
  243305: 81533c9
  243303: 70f7eaf
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 4c18fd5 commit a2be684
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 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: f1f701e937b542368a43b55b437ac90d74d724d9
refs/heads/master: 5c217b60fed39ed2ac6a2e8b788df4a74fa68878
22 changes: 11 additions & 11 deletions trunk/arch/ia64/kernel/irq_lsapic.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,30 @@
#include <linux/irq.h>

static unsigned int
lsapic_noop_startup (unsigned int irq)
lsapic_noop_startup (struct irq_data *data)
{
return 0;
}

static void
lsapic_noop (unsigned int irq)
lsapic_noop (struct irq_data *data)
{
/* nothing to do... */
}

static int lsapic_retrigger(unsigned int irq)
static int lsapic_retrigger(struct irq_data *data)
{
ia64_resend_irq(irq);
ia64_resend_irq(data->irq);

return 1;
}

struct irq_chip irq_type_ia64_lsapic = {
.name = "LSAPIC",
.startup = lsapic_noop_startup,
.shutdown = lsapic_noop,
.enable = lsapic_noop,
.disable = lsapic_noop,
.ack = lsapic_noop,
.retrigger = lsapic_retrigger,
.name = "LSAPIC",
.irq_startup = lsapic_noop_startup,
.irq_shutdown = lsapic_noop,
.irq_enable = lsapic_noop,
.irq_disable = lsapic_noop,
.irq_ack = lsapic_noop,
.irq_retrigger = lsapic_retrigger,
};

0 comments on commit a2be684

Please sign in to comment.