Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 154882
b: refs/heads/master
c: dfe0756
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner authored and Kyle McMartin committed Jul 3, 2009
1 parent 6972646 commit 9257309
Show file tree
Hide file tree
Showing 8 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: 47b4150baa003fb83b93365f3eadd4c373e4fa6c
refs/heads/master: dfe07565021959f0f646e9e775810c1bfbe0f6d6
2 changes: 1 addition & 1 deletion trunk/arch/parisc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ static int cpu_set_affinity_irq(unsigned int irq, const struct cpumask *dest)
}
#endif

static struct hw_interrupt_type cpu_interrupt_type = {
static struct irq_chip cpu_interrupt_type = {
.typename = "CPU",
.startup = cpu_startup_irq,
.shutdown = cpu_disable_irq,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/dino.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ static unsigned int dino_startup_irq(unsigned int irq)
return 0;
}

static struct hw_interrupt_type dino_interrupt_type = {
static struct irq_chip dino_interrupt_type = {
.typename = "GSC-PCI",
.startup = dino_startup_irq,
.shutdown = dino_disable_irq,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/eisa.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static unsigned int eisa_startup_irq(unsigned int irq)
return 0;
}

static struct hw_interrupt_type eisa_interrupt_type = {
static struct irq_chip eisa_interrupt_type = {
.typename = "EISA",
.startup = eisa_startup_irq,
.shutdown = eisa_disable_irq,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/parisc/gsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static unsigned int gsc_asic_startup_irq(unsigned int irq)
return 0;
}

static struct hw_interrupt_type gsc_asic_interrupt_type = {
static struct irq_chip gsc_asic_interrupt_type = {
.typename = "GSC-ASIC",
.startup = gsc_asic_startup_irq,
.shutdown = gsc_asic_disable_irq,
Expand All @@ -158,7 +158,7 @@ static struct hw_interrupt_type gsc_asic_interrupt_type = {
.end = no_end_irq,
};

int gsc_assign_irq(struct hw_interrupt_type *type, void *data)
int gsc_assign_irq(struct irq_chip *type, void *data)
{
static int irq = GSC_IRQ_BASE;
struct irq_desc *desc;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/gsc.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct gsc_asic {
int gsc_common_setup(struct parisc_device *parent, struct gsc_asic *gsc_asic);
int gsc_alloc_irq(struct gsc_irq *dev); /* dev needs an irq */
int gsc_claim_irq(struct gsc_irq *dev, int irq); /* dev needs this irq */
int gsc_assign_irq(struct hw_interrupt_type *type, void *data);
int gsc_assign_irq(struct irq_chip *type, void *data);
int gsc_find_local_irq(unsigned int irq, int *global_irq, int limit);
void gsc_fixup_irqs(struct parisc_device *parent, void *ctrl,
void (*choose)(struct parisc_device *child, void *ctrl));
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/iosapic.c
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ static int iosapic_set_affinity_irq(unsigned int irq,
}
#endif

static struct hw_interrupt_type iosapic_interrupt_type = {
static struct irq_chip iosapic_interrupt_type = {
.typename = "IO-SAPIC-level",
.startup = iosapic_startup_irq,
.shutdown = iosapic_disable_irq,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/superio.c
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ static unsigned int superio_startup_irq(unsigned int irq)
return 0;
}

static struct hw_interrupt_type superio_interrupt_type = {
static struct irq_chip superio_interrupt_type = {
.typename = SUPERIO,
.startup = superio_startup_irq,
.shutdown = superio_disable_irq,
Expand Down

0 comments on commit 9257309

Please sign in to comment.