From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ali Akcaagac Subject: [PATCH]: 2.6.0-test2-bk1 SCSI dc395x compile problem Date: Fri, 01 Aug 2003 14:56:52 +0200 Sender: linux-scsi-owner@vger.kernel.org Message-ID: <1059742612.30563.5.camel@localhost> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-pqxtr7j9YJqegResnzZm" Return-path: Received: from smtp02.web.de ([217.72.192.151]:64788 "EHLO smtp.web.de") by vger.kernel.org with ESMTP id S270329AbTHAM47 (ORCPT ); Fri, 1 Aug 2003 08:56:59 -0400 List-Id: linux-scsi@vger.kernel.org To: dc395x@twibble.org --=-pqxtr7j9YJqegResnzZm Content-Type: text/plain Content-Transfer-Encoding: 7bit Hello, I'm besides 2 others one of the Maintainers of the SCSI DC395x SCSI driver and I found a little 1 char problem during the merge from the AC tree to the official BK tree which causes a compile issue. Here is a little fix for the 2.6.0-test2-bk1 that allows compiling correctly. I would be thankful if this patch can be included in an upcoming bk2 or test3 release. --=-pqxtr7j9YJqegResnzZm Content-Disposition: attachment; filename=dc395x.c.patch Content-Type: text/x-patch; name=dc395x.c.patch; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit --- linux-2.6.0-test2-bk1/drivers/scsi/dc395x.c.bak 2003-08-01 14:32:05.000000000 +0200 +++ linux-2.6.0-test2-bk1/drivers/scsi/dc395x.c 2003-08-01 14:46:26.247629416 +0200 @@ -5890,7 +5890,7 @@ pci_set_drvdata(dev, scsi_host); /* get the scsi mid level to scan for new devices on the bus */ - scsi_add_host(scsi_host, &pdev->dev); /* XXX handle failure */ + scsi_add_host(scsi_host, &dev->dev); /* XXX handle failure */ scsi_scan_host(scsi_host); return 0; --=-pqxtr7j9YJqegResnzZm--