Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54275
b: refs/heads/master
c: 241258d
h: refs/heads/master
i:
  54273: 53868f8
  54271: 677fab2
v: v3
  • Loading branch information
Milind Arun Choudhary authored and Linus Torvalds committed May 7, 2007
1 parent d39bb89 commit e109570
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 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: edfe7a569687c2cd85e82eaecae5b260577accbb
refs/heads/master: 241258d1cc4d3551608364cd678d5a85239ad481
2 changes: 1 addition & 1 deletion trunk/arch/m68k/amiga/amiints.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static irqreturn_t ami_int5(int irq, void *dev_id);

static struct irq_controller amiga_irq_controller = {
.name = "amiga",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(amiga_irq_controller.lock),
.enable = amiga_enable_irq,
.disable = amiga_disable_irq,
};
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/m68k/amiga/cia.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static void cia_disable_irq(unsigned int irq)

static struct irq_controller cia_irq_controller = {
.name = "cia",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(cia_irq_controller.lock),
.enable = cia_enable_irq,
.disable = cia_disable_irq,
};
Expand Down Expand Up @@ -160,7 +160,7 @@ static void auto_disable_irq(unsigned int irq)

static struct irq_controller auto_irq_controller = {
.name = "auto",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(auto_irq_controller.lock),
.enable = auto_enable_irq,
.disable = auto_disable_irq,
};
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/apollo/dn_ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void apollo_irq_shutdown(unsigned int irq)

static struct irq_controller apollo_irq_controller = {
.name = "apollo",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(apollo_irq_controller.lock),
.startup = apollo_irq_startup,
.shutdown = apollo_irq_shutdown,
};
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/atari/ataints.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ static void atari_shutdown_irq(unsigned int irq)

static struct irq_controller atari_irq_controller = {
.name = "atari",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(atari_irq_controller.lock),
.startup = atari_startup_irq,
.shutdown = atari_shutdown_irq,
.enable = atari_enable_irq,
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/m68k/kernel/ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ static int m68k_first_user_vec;

static struct irq_controller auto_irq_controller = {
.name = "auto",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(auto_irq_controller.lock),
.startup = m68k_irq_startup,
.shutdown = m68k_irq_shutdown,
};

static struct irq_controller user_irq_controller = {
.name = "user",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(user_irq_controller.lock),
.startup = m68k_irq_startup,
.shutdown = m68k_irq_shutdown,
};
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/mac/macints.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ static void mac_disable_irq(unsigned int irq);

static struct irq_controller mac_irq_controller = {
.name = "mac",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(mac_irq_controller.lock),
.enable = mac_enable_irq,
.disable = mac_disable_irq,
};
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 @@ -59,7 +59,7 @@ static void q40_irq_shutdown(unsigned int irq)

static struct irq_controller q40_irq_controller = {
.name = "q40",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(q40_irq_controller.lock),
.startup = q40_irq_startup,
.shutdown = q40_irq_shutdown,
.enable = q40_enable_irq,
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/sun3/sun3ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static void sun3_inthandle(unsigned int irq, struct pt_regs *fp)

static struct irq_controller sun3_irq_controller = {
.name = "sun3",
.lock = SPIN_LOCK_UNLOCKED,
.lock = __SPIN_LOCK_UNLOCKED(sun3_irq_controller.lock),
.startup = m68k_irq_startup,
.shutdown = m68k_irq_shutdown,
.enable = sun3_enable_irq,
Expand Down

0 comments on commit e109570

Please sign in to comment.