From owner-svn-src-all@freebsd.org Fri Feb 17 06:49:48 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3293BCE1FB8; Fri, 17 Feb 2017 06:49:48 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCA83195A; Fri, 17 Feb 2017 06:49:47 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1H6nk3c060924; Fri, 17 Feb 2017 06:49:47 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1H6nkbu060922; Fri, 17 Feb 2017 06:49:46 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201702170649.v1H6nkbu060922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Fri, 17 Feb 2017 06:49:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313860 - head/sys/dev/aha X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Feb 2017 06:49:48 -0000 Author: imp Date: Fri Feb 17 06:49:46 2017 New Revision: 313860 URL: https://svnweb.freebsd.org/changeset/base/313860 Log: Remove residuals of mca support Modified: head/sys/dev/aha/aha.c head/sys/dev/aha/ahareg.h Modified: head/sys/dev/aha/aha.c ============================================================================== --- head/sys/dev/aha/aha.c Fri Feb 17 06:45:04 2017 (r313859) +++ head/sys/dev/aha/aha.c Fri Feb 17 06:49:46 2017 (r313860) @@ -1,9 +1,8 @@ /* - * Generic register and struct definitions for the Adaptech 154x/164x + * Generic register and struct definitions for the Adaptech 154x * SCSI host adapters. Product specific probe and attach routines can * be found in: * aha 1542A/1542B/1542C/1542CF/1542CP aha_isa.c - * aha 1640 aha_mca.c */ /*- * Copyright (c) 1998 M. Warner Losh. @@ -339,9 +338,6 @@ aha_fetch_adapter_info(struct aha_softc case BOARD_1542: snprintf(aha->model, sizeof(aha->model), "1540/1542 64 head BIOS"); break; - case BOARD_1640: - snprintf(aha->model, sizeof(aha->model), "1640"); - break; case BOARD_1740: snprintf(aha->model, sizeof(aha->model), "1740A/1742A/1744"); break; Modified: head/sys/dev/aha/ahareg.h ============================================================================== --- head/sys/dev/aha/ahareg.h Fri Feb 17 06:45:04 2017 (r313859) +++ head/sys/dev/aha/ahareg.h Fri Feb 17 06:49:46 2017 (r313860) @@ -1,8 +1,8 @@ /*- * Generic register and struct definitions for the Adaptech 1540, 1542, - * 1640, 1642 SCSI host adapters. Product specific probe and attach + * SCSI host adapters. Product specific probe and attach * routines can be found in: - * aha_isa.c, aha_mca.c + * aha_isa.c * * Derived from bt.c written by: * @@ -157,7 +157,6 @@ typedef struct { #define BOARD_1540_16HEAD_BIOS 0x00 #define BOARD_1540_64HEAD_BIOS 0x30 #define BOARD_1542 0x41 /* aha-1540/1542 w/64-h bios */ -#define BOARD_1640 0x42 /* aha-1640 */ #define BOARD_1740 0x43 /* aha-1740A/1742A/1744 */ #define BOARD_1542C 0x44 /* aha-1542C */ #define BOARD_1542CF 0x45 /* aha-1542CF */