From patchwork Mon Jun 22 11:48:02 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 28989 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by bilbo.ozlabs.org (Postfix) with ESMTP id 723AEB7130 for ; Mon, 22 Jun 2009 21:43:33 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756239AbZFVLn0 (ORCPT ); Mon, 22 Jun 2009 07:43:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755963AbZFVLn0 (ORCPT ); Mon, 22 Jun 2009 07:43:26 -0400 Received: from mail-fx0-f224.google.com ([209.85.220.224]:45870 "EHLO mail-fx0-f224.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756326AbZFVLnX (ORCPT ); Mon, 22 Jun 2009 07:43:23 -0400 Received: by mail-fx0-f224.google.com with SMTP id 24so591417fxm.37 for ; Mon, 22 Jun 2009 04:43:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:cc:mime-version:content-disposition:message-id :content-type:content-transfer-encoding; bh=IOn1BSDf2j0s/WK3D59irZ84z4a0tnb+Srsc3thbndU=; b=BO6abP9BzjVTFnpBM+RuHf/d7mJejRCKKvKFmInsk+BkCPeybHy/hju3BkXttSdjMp 3mP7sYgyGFL9GNX0HSQKHRDISDc298Td9vCKoR2/WwddnI7ZInMaVhnkJ2tFAIaC6Pi4 n1O8sQr9cZWZarB3+ctjVFCoLuvkP5KShMobM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:mime-version:content-disposition :message-id:content-type:content-transfer-encoding; b=WR2YoY+ckW1U9i+BByKukwv0bMXKwrQCX5vkCFpPUM2+PS7AnYj6QdodQ2JhzAlX9J rFJX2BXUUjkctWgluELVZ8qEAGkYSbjYBKdlGxsRtHifwdp62FSzAA7VatOzan6ZDc4h WNTLduziXo2AAs75V4qimgPiSwbJF7eB5GkJs= Received: by 10.204.51.200 with SMTP id e8mr6093564bkg.175.1245671005420; Mon, 22 Jun 2009 04:43:25 -0700 (PDT) Received: from localhost.localdomain (chello089077034197.chello.pl [89.77.34.197]) by mx.google.com with ESMTPS id z15sm12364387fkz.34.2009.06.22.04.43.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 22 Jun 2009 04:43:25 -0700 (PDT) From: Bartlomiej Zolnierkiewicz To: David Miller Subject: [PATCH] cs5520: add missing IRQ setup for the second port Date: Mon, 22 Jun 2009 13:48:02 +0200 User-Agent: KMail/1.11.3 (Linux/2.6.30-next-20090619-10934-gace1e80-dirty; KDE/4.2.3; i686; ; ) Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200906221348.02632.bzolnier@gmail.com> Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Bartlomiej Zolnierkiewicz Subject: [PATCH] cs5520: add missing IRQ setup for the second port Signed-off-by: Bartlomiej Zolnierkiewicz Signed-off-by: Bartlomiej Zolnierkiewicz Signed-off-by: David S. Miller --- This is obviously correct regression fix. The only problem is that it cannot be applied under the new rigid policy before somebody with the hardware verifies it. This will only result in a needless delay in this case (IMHO a common sense works better than rigid policies). drivers/ide/cs5520.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: b/drivers/ide/cs5520.c =================================================================== --- a/drivers/ide/cs5520.c +++ b/drivers/ide/cs5520.c @@ -135,6 +135,7 @@ static int __devinit cs5520_init_one(str ide_pci_setup_ports(dev, d, &hw[0], &hws[0]); hw[0].irq = 14; + hw[1].irq = 15; return ide_host_add(d, hws, 2, NULL); }