aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/asr/asr.c
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2007-06-17 05:55:54 +0000
committerScott Long <scottl@FreeBSD.org>2007-06-17 05:55:54 +0000
commitb50569b71dfb110a58aa3e83f629115291802a74 (patch)
tree1f069a0af9a8c28e09089c8dc789bcd435a94cce /sys/dev/asr/asr.c
parent6eb9bbf3299f31b6cbda15bb91fc20ed7c808e35 (diff)
downloadsrc-b50569b71dfb110a58aa3e83f629115291802a74.tar.gz
src-b50569b71dfb110a58aa3e83f629115291802a74.zip
Prepare for future integration between CAM and newbus. xpt_bus_register
now takes a device_t to be the parent of the bus that is being created. Most SIMs have been updated with a reasonable argument, but a few exceptions just pass NULL for now. This argument isn't used yet and the newbus integration likely won't be ready until after 7.0-RELEASE.
Notes
Notes: svn path=/head/; revision=170872
Diffstat (limited to 'sys/dev/asr/asr.c')
-rw-r--r--sys/dev/asr/asr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/asr/asr.c b/sys/dev/asr/asr.c
index 260cbbd47d21..2e3aae2b9e0e 100644
--- a/sys/dev/asr/asr.c
+++ b/sys/dev/asr/asr.c
@@ -2657,7 +2657,7 @@ asr_attach(device_t dev)
continue;
}
- if (xpt_bus_register(sc->ha_sim[bus], bus) != CAM_SUCCESS) {
+ if (xpt_bus_register(sc->ha_sim[bus], dev, bus) != CAM_SUCCESS){
cam_sim_free(sc->ha_sim[bus],
/*free_devq*/TRUE);
sc->ha_sim[bus] = NULL;