From owner-p4-projects@FreeBSD.ORG Sat Jun 5 20:53:14 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9068C16A4D0; Sat, 5 Jun 2004 20:53:14 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6839816A4CE for ; Sat, 5 Jun 2004 20:53:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 611E843D31 for ; Sat, 5 Jun 2004 20:53:14 -0700 (PDT) (envelope-from scottl@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i563rECt014255 for ; Sun, 6 Jun 2004 03:53:14 GMT (envelope-from scottl@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i563rDKq014252 for perforce@freebsd.org; Sun, 6 Jun 2004 03:53:13 GMT (envelope-from scottl@freebsd.org) Date: Sun, 6 Jun 2004 03:53:13 GMT Message-Id: <200406060353.i563rDKq014252@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to scottl@freebsd.org using -f From: Scott Long To: Perforce Change Reviews Subject: PERFORCE change 54252 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jun 2004 03:53:15 -0000 http://perforce.freebsd.org/chv.cgi?CH=54252 Change 54252 by scottl@scottl-esp-sparc64 on 2004/06/06 03:52:13 set the device description in esp_probe. Affected files ... .. //depot/projects/scottl-esp/src/sys/dev/esp/esp_sbus.c#11 edit Differences ... ==== //depot/projects/scottl-esp/src/sys/dev/esp/esp_sbus.c#11 (text+ko) ==== @@ -69,9 +69,6 @@ struct esp_softc { struct ncr53c9x_softc sc_ncr53c9x; /* glue to MI code */ struct device *sc_dev; -#if 0 - struct sbusdev sc_sd; /* sbus device */ -#endif int sc_rid; struct resource *sc_res; @@ -145,8 +142,10 @@ char *name; name = sbus_get_name(dev); - if (strcmp("SUNW,fas", name) == 0) + if (strcmp("SUNW,fas", name) == 0) { + device_set_desc(dev, "Sun FAS366 Fast-Wide SCSI"); return (-10); + } return (ENXIO); } @@ -403,7 +402,6 @@ /* Do the common parts of attachment. */ ncr53c9x_attach(sc); - } /*