From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756097Ab1EXMUD (ORCPT ); Tue, 24 May 2011 08:20:03 -0400 Received: from mail-px0-f173.google.com ([209.85.212.173]:63300 "EHLO mail-px0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753961Ab1EXMUA (ORCPT ); Tue, 24 May 2011 08:20:00 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=pB2e3uModwfXet52A9tBMbrEOJ7q797l0WdstL3hOUc812xjXPDJYpC0be3aiEz0m5 /Ro32oOAvuN0a5+2xAaVXYTrrExq7jfeNO3RYphyo3QSZ+T2P+3GGjraQbi/BOXrAljn ar5+cXDI6iwLcl2hTD/DxkcM0I/dHFSJwnG2Y= From: Pengfei Zhang To: Ralf Baechle , Thomas Gleixner Cc: linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Pengfei Zhang Subject: [PATCH] MIPS:i8259.c remove resume and shutdown to syscore_ops Date: Tue, 24 May 2011 20:19:18 +0800 Message-Id: <1306239558-4997-1-git-send-email-zoppof.zhang@gmail.com> X-Mailer: git-send-email 1.7.4.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Remove the resume and shutdown of i8259A from the sysdev_class to the syscore_ops since these members had removed from the structure sysdev_class. Signed-off-by: Pengfei Zhang --- arch/mips/kernel/i8259.c | 20 +++++++++++++------- 1 files changed, 13 insertions(+), 7 deletions(-) diff --git a/arch/mips/kernel/i8259.c b/arch/mips/kernel/i8259.c index c018696..a74a8ea 100644 --- a/arch/mips/kernel/i8259.c +++ b/arch/mips/kernel/i8259.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include @@ -215,14 +216,13 @@ spurious_8259A_irq: } } -static int i8259A_resume(struct sys_device *dev) +static void i8259A_resume(void) { if (i8259A_auto_eoi >= 0) init_8259A(i8259A_auto_eoi); - return 0; } -static int i8259A_shutdown(struct sys_device *dev) +static void i8259A_shutdown(void) { /* Put the i8259A into a quiescent state that * the kernel initialization code can get it @@ -232,15 +232,17 @@ static int i8259A_shutdown(struct sys_device *dev) outb(0xff, PIC_MASTER_IMR); /* mask all of 8259A-1 */ outb(0xff, PIC_SLAVE_IMR); /* mask all of 8259A-1 */ } - return 0; } -static struct sysdev_class i8259_sysdev_class = { - .name = "i8259", +static struct syscore_ops i8259_syscore_ops = { .resume = i8259A_resume, .shutdown = i8259A_shutdown, }; +static struct sysdev_class i8259_sysdev_class = { + .name = "i8259", +}; + static struct sys_device device_i8259A = { .id = 0, .cls = &i8259_sysdev_class, @@ -248,7 +250,11 @@ static struct sys_device device_i8259A = { static int __init i8259A_init_sysfs(void) { - int error = sysdev_class_register(&i8259_sysdev_class); + int error; + + register_syscore_ops(&i8259_syscore_ops); + + error = sysdev_class_register(&i8259_sysdev_class); if (!error) error = sysdev_register(&device_i8259A); return error; -- 1.7.4.1