svn commit: r207867 - stable/8/sys/dev/esp
Marius Strobl
marius at FreeBSD.org
Mon May 10 18:51:49 UTC 2010
Author: marius
Date: Mon May 10 18:51:49 2010
New Revision: 207867
URL: http://svn.freebsd.org/changeset/base/207867
Log:
MFC: r207281
Take advantage of OF_getscsinitid().
Modified:
stable/8/sys/dev/esp/esp_sbus.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
stable/8/sys/geom/sched/ (props changed)
Modified: stable/8/sys/dev/esp/esp_sbus.c
==============================================================================
--- stable/8/sys/dev/esp/esp_sbus.c Mon May 10 18:50:28 2010 (r207866)
+++ stable/8/sys/dev/esp/esp_sbus.c Mon May 10 18:51:49 2010 (r207867)
@@ -466,9 +466,7 @@ espattach(struct esp_softc *esc, const s
goto fail_lock;
}
- if (OF_getprop(ofw_bus_get_node(esc->sc_dev), "scsi-initiator-id",
- &sc->sc_id, sizeof(sc->sc_id)) == -1)
- sc->sc_id = 7;
+ sc->sc_id = OF_getscsinitid(esc->sc_dev);
#ifdef ESP_SBUS_DEBUG
device_printf(esc->sc_dev, "%s: sc_id %d, freq %d\n",
More information about the svn-src-stable
mailing list