From patchwork Sun Mar 27 04:31:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 666331 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p2R4VukF030190 for ; Sun, 27 Mar 2011 04:31:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751124Ab1C0Ebw (ORCPT ); Sun, 27 Mar 2011 00:31:52 -0400 Received: from mail-iy0-f174.google.com ([209.85.210.174]:64594 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750750Ab1C0Ebv (ORCPT ); Sun, 27 Mar 2011 00:31:51 -0400 Received: by iyb14 with SMTP id 14so1921777iyb.19 for ; Sat, 26 Mar 2011 21:31:50 -0700 (PDT) Received: by 10.43.49.199 with SMTP id vb7mr4447765icb.270.1301200310759; Sat, 26 Mar 2011 21:31:50 -0700 (PDT) Received: from chimagu (w142187.ppp.asahi-net.or.jp [121.1.142.187]) by mx.google.com with ESMTPS id 19sm1905468ibx.35.2011.03.26.21.31.49 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 26 Mar 2011 21:31:50 -0700 (PDT) Received: from iwamatsu by chimagu with local (Exim 4.74) (envelope-from ) id 1Q3hdk-0001OP-6X; Sun, 27 Mar 2011 13:31:48 +0900 From: Nobuhiro Iwamatsu To: linux-sh@vger.kernel.org Cc: Nobuhiro Iwamatsu Subject: [PATCH 1/2] sh: landisk: Remove mv_nr_irqs Date: Sun, 27 Mar 2011 13:31:46 +0900 Message-Id: <1301200307-5321-1-git-send-email-iwamatsu@nigauri.org> X-Mailer: git-send-email 1.7.4.1 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Sun, 27 Mar 2011 04:31:56 +0000 (UTC) diff --git a/arch/sh/boards/mach-landisk/setup.c b/arch/sh/boards/mach-landisk/setup.c index 94186cf..f1147ca 100644 --- a/arch/sh/boards/mach-landisk/setup.c +++ b/arch/sh/boards/mach-landisk/setup.c @@ -23,7 +23,7 @@ static void landisk_power_off(void) { - __raw_writeb(0x01, PA_SHUTDOWN); + __raw_writeb(0x01, PA_SHUTDOWN); } static struct resource cf_ide_resources[3]; @@ -85,7 +85,7 @@ device_initcall(landisk_devices_setup); static void __init landisk_setup(char **cmdline_p) { - /* LED ON */ + /* LED ON */ __raw_writeb(__raw_readb(PA_LED) | 0x03, PA_LED); printk(KERN_INFO "I-O DATA DEVICE, INC. \"LANDISK Series\" support.\n"); @@ -97,7 +97,6 @@ static void __init landisk_setup(char **cmdline_p) */ static struct sh_machine_vector mv_landisk __initmv = { .mv_name = "LANDISK", - .mv_nr_irqs = 72, .mv_setup = landisk_setup, .mv_init_irq = init_landisk_IRQ, };