From mboxrd@z Thu Jan 1 00:00:00 1970 From: Geert Uytterhoeven Subject: [PATCH 2/5] m68k/scsi: Remove obsolete IRQ_FLG_* users Date: Sun, 23 Oct 2011 23:18:03 +0200 Message-ID: <1319404686-10800-2-git-send-email-geert@linux-m68k.org> References: <1319404686-10800-1-git-send-email-geert@linux-m68k.org> Return-path: Received: from jacques.telenet-ops.be ([195.130.132.50]:49860 "EHLO jacques.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752099Ab1JWVSU (ORCPT ); Sun, 23 Oct 2011 17:18:20 -0400 In-Reply-To: <1319404686-10800-1-git-send-email-geert@linux-m68k.org> Sender: linux-m68k-owner@vger.kernel.org List-Id: linux-m68k@vger.kernel.org To: linux-m68k@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Geert Uytterhoeven , "James E.J. Bottomley" , linux-scsi@vger.kernel.org The m68k core irq code stopped honoring these flags during the irq restructuring in 2006. Signed-off-by: Geert Uytterhoeven Cc: "James E.J. Bottomley" Cc: linux-scsi@vger.kernel.org --- This is a split-up of "m68k/irq: Remove obsolete IRQ_FLG_* definitions and users", to reduce conflicts and dependencies. diff --git a/drivers/scsi/mac_scsi.c b/drivers/scsi/mac_scsi.c index af3a6af..ea2bde2 100644 --- a/drivers/scsi/mac_scsi.c +++ b/drivers/scsi/mac_scsi.c @@ -291,8 +291,7 @@ int __init macscsi_detect(struct scsi_host_template * tpnt) ((struct NCR5380_hostdata *)instance->hostdata)->ctrl = 0; if (instance->irq != SCSI_IRQ_NONE) - if (request_irq(instance->irq, NCR5380_intr, IRQ_FLG_SLOW, - "ncr5380", instance)) { + if (request_irq(instance->irq, NCR5380_intr, 0, "ncr5380", instance)) { printk(KERN_WARNING "scsi%d: IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq); instance->irq = SCSI_IRQ_NONE;