svn commit: r313860 - head/sys/dev/aha

Warner Losh imp at FreeBSD.org
Fri Feb 17 06:49:48 UTC 2017


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 */


More information about the svn-src-head mailing list