Skip to content

Commit

Permalink
SPIN_LOCK_UNLOCKED cleanup in arch/m68k
Browse files Browse the repository at this point in the history
SPIN_LOCK_UNLOCKED cleanup,use __SPIN_LOCK_UNLOCKED instead

Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Milind Arun Choudhary authored and Linus Torvalds committed May 7, 2007
1 parent edfe7a5 commit 241258d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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 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 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 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 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 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 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 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 241258d

Please sign in to comment.