Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 11 Nov 2002 18:25:51 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 11 Nov 2002 18:25:51 -0500 Received: from hermes.fachschaften.tu-muenchen.de ([129.187.202.12]:4606 "HELO hermes.fachschaften.tu-muenchen.de") by vger.kernel.org with SMTP id ; Mon, 11 Nov 2002 18:25:42 -0500 Date: Tue, 12 Nov 2002 00:32:23 +0100 From: Adrian Bunk To: Linus Torvalds , Alan Cox Cc: Kernel Mailing List Subject: Re: Linux v2.5.47 Message-ID: <20021111233223.GB15398@fs.tum.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1682 Lines: 55 On Sun, Nov 10, 2002 at 07:46:06PM -0800, Linus Torvalds wrote: >... > Alan Cox : >... > o tidy the 53c406, kill off old header >... This patch removed the header file but not the #include in the .c file resulting in the following compile error: <-- snip --> ... gcc -Wp,-MD,drivers/scsi/.NCR53c406a.o.d -D__KERNEL__ -Iinclude -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=k6 -Iarch/i386/mach-generic -nostdinc -iwithprefix include -DKBUILD_BASENAME=NCR53c406a -c -o drivers/scsi/NCR53c406a.o drivers/scsi/NCR53c406a.c drivers/scsi/NCR53c406a.c:58: NCR53c406a.h: No such file or directory ... make[2]: *** [drivers/scsi/NCR53c406a.o] Error 1 <-- snip --> The following simple fix is needed: --- linux-2.5.47/drivers/scsi/NCR53c406a.c.old 2002-11-12 00:21:27.000000000 +0100 +++ linux-2.5.47/drivers/scsi/NCR53c406a.c 2002-11-12 00:21:51.000000000 +0100 @@ -55,7 +55,6 @@ #include #include "scsi.h" #include "hosts.h" -#include "NCR53c406a.h" /* ============================================================= */ cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/