Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40398
b: refs/heads/master
c: 08d892f
h: refs/heads/master
v: v3
  • Loading branch information
Andrey Panin authored and Linus Torvalds committed Oct 28, 2006
1 parent f52ab51 commit 50df29c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 58 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: 52fd24ca1db3a741f144bbc229beefe044202cac
refs/heads/master: 08d892f11aae7125fe078cf93ec5cf6af288c5e7
7 changes: 3 additions & 4 deletions trunk/arch/i386/mach-visws/visws_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ static void end_cobalt_irq(unsigned int irq)
spin_unlock_irqrestore(&cobalt_lock, flags);
}

static struct hw_interrupt_type cobalt_irq_type = {
static struct irq_chip cobalt_irq_type = {
.typename = "Cobalt-APIC",
.startup = startup_cobalt_irq,
.shutdown = disable_cobalt_irq,
Expand Down Expand Up @@ -159,17 +159,16 @@ static void end_piix4_master_irq(unsigned int irq)
spin_unlock_irqrestore(&cobalt_lock, flags);
}

static struct hw_interrupt_type piix4_master_irq_type = {
static struct irq_chip piix4_master_irq_type = {
.typename = "PIIX4-master",
.startup = startup_piix4_master_irq,
.ack = ack_cobalt_irq,
.end = end_piix4_master_irq,
};


static struct hw_interrupt_type piix4_virtual_irq_type = {
static struct irq_chip piix4_virtual_irq_type = {
.typename = "PIIX4-virtual",
.startup = startup_8259A_irq,
.shutdown = disable_8259A_irq,
.enable = enable_8259A_irq,
.disable = disable_8259A_irq,
Expand Down
53 changes: 0 additions & 53 deletions trunk/include/asm-i386/mach-visws/do_timer.h

This file was deleted.

5 changes: 5 additions & 0 deletions trunk/include/asm-i386/mach-visws/mach_apic.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ static inline void clustered_apic_check(void)
{
}

static inline int apicid_to_node(int logical_apicid)
{
return 0;
}

/* Mapping from cpu number to logical apicid */
static inline int cpu_to_logical_apicid(int cpu)
{
Expand Down

0 comments on commit 50df29c

Please sign in to comment.