Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Feb 2017 06:49:46 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r313860 - head/sys/dev/aha
Message-ID:  <201702170649.v1H6nkbu060922@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702170649.v1H6nkbu060922>