From owner-cvs-src@FreeBSD.ORG Sun Mar 14 04:10:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9826D16A4CF; Sun, 14 Mar 2004 04:10:48 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BC9E43D31; Sun, 14 Mar 2004 04:10:48 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 828E95C7AA; Sun, 14 Mar 2004 04:10:48 -0800 (PST) Date: Sun, 14 Mar 2004 13:10:48 +0100 From: Maxime Henrion To: "Bjoern A. Zeeb" Message-ID: <20040314121048.GI35475@elvis.mu.org> References: <200403140540.i2E5eock075931@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Warner Losh cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include asc_ioctl.h ioctl_ctx.h wtio.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Mar 2004 12:10:48 -0000 Bjoern A. Zeeb wrote: > On Sat, 13 Mar 2004, Warner Losh wrote: > > > imp 2004/03/13 21:40:50 PST > > > > FreeBSD src repository > > > > Removed files: > > sys/i386/include asc_ioctl.h ioctl_ctx.h wtio.h > > Log: > > remove the ioctl files from the asc, ctx and wt drivers just removed > > > > Revision Changes Path > > 0.4 +0 -53 src/sys/i386/include/asc_ioctl.h (dead) > > 1.7 +0 -31 src/sys/i386/include/ioctl_ctx.h (dead) > > 1.5 +0 -30 src/sys/i386/include/wtio.h (dead) > > usr.bin/mt/mt.c: > > #if defined(__i386__) > #include > #endif > > s.th. like this should do the trick: > > --- usr.bin/mt/mt.c.orig Sun Mar 14 12:01:14 2004 > +++ usr.bin/mt/mt.c Sun Mar 14 12:01:25 2004 > @@ -306,10 +306,6 @@ main(argc, argv) > /* NOTREACHED */ > } > > -#if defined(__i386__) > -#include > -#endif > - > struct tape_desc { > short t_type; /* type of magtape device */ > char *t_name; /* printing name */ > @@ -325,10 +321,6 @@ struct tape_desc { > * magtape driver. > */ > { MT_ISAR, "SCSI tape drive", 0, 0 }, > -#if defined (__i386__) > - { MT_ISVIPER1, "Archive Viper", WTDS_BITS, WTER_BITS }, > - { MT_ISMFOUR, "Wangtek", WTDS_BITS, WTER_BITS }, > -#endif > { 0, NULL, 0, 0 } > }; Would be even better if you remove the comment lines that refer to the lines you just removed :-). Cheers, Maxime