Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 170404
b: refs/heads/master
c: 89a7183
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner authored and David S. Miller committed Nov 18, 2009
1 parent cb01eaf commit 9edc759
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: 4309e5682dd6cca22f1a5cc364b209bf4a121786
refs/heads/master: 89a7183d088708ac1ebd0bfc2a939c59b24fec44
8 changes: 4 additions & 4 deletions trunk/arch/sparc/kernel/irq_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ int show_interrupts(struct seq_file *p, void *v)
for_each_online_cpu(j)
seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
#endif
seq_printf(p, " %9s", irq_desc[i].chip->typename);
seq_printf(p, " %9s", irq_desc[i].chip->name);
seq_printf(p, " %s", action->name);

for (action=action->next; action; action = action->next)
Expand Down Expand Up @@ -484,23 +484,23 @@ static void sun4v_virq_eoi(unsigned int virt_irq)
}

static struct irq_chip sun4u_irq = {
.typename = "sun4u",
.name = "sun4u",
.enable = sun4u_irq_enable,
.disable = sun4u_irq_disable,
.eoi = sun4u_irq_eoi,
.set_affinity = sun4u_set_affinity,
};

static struct irq_chip sun4v_irq = {
.typename = "sun4v",
.name = "sun4v",
.enable = sun4v_irq_enable,
.disable = sun4v_irq_disable,
.eoi = sun4v_irq_eoi,
.set_affinity = sun4v_set_affinity,
};

static struct irq_chip sun4v_virq = {
.typename = "vsun4v",
.name = "vsun4v",
.enable = sun4v_virq_enable,
.disable = sun4v_virq_disable,
.eoi = sun4v_virq_eoi,
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sparc/kernel/pci_msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static void free_msi(struct pci_pbm_info *pbm, int msi_num)
}

static struct irq_chip msi_irq = {
.typename = "PCI-MSI",
.name = "PCI-MSI",
.mask = mask_msi_irq,
.unmask = unmask_msi_irq,
.enable = unmask_msi_irq,
Expand Down

0 comments on commit 9edc759

Please sign in to comment.