Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 241258d1 authored by Milind Arun Choudhary's avatar Milind Arun Choudhary Committed by Linus Torvalds
Browse files

SPIN_LOCK_UNLOCKED cleanup in arch/m68k



SPIN_LOCK_UNLOCKED cleanup,use __SPIN_LOCK_UNLOCKED instead

Signed-off-by: default avatarMilind Arun Choudhary <milindchoudhary@gmail.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent edfe7a56
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};
+2 −2
Original line number Diff line number Diff line
@@ -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,
};
@@ -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,
};
+1 −1
Original line number Diff line number Diff line
@@ -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,
};
+1 −1
Original line number Diff line number Diff line
@@ -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,
+2 −2
Original line number Diff line number Diff line
@@ -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,
};
Loading