summaryrefslogtreecommitdiff
path: root/hald/linux/osspec.c
diff options
context:
space:
mode:
authorDavid Zeuthen <david@fubar.dk>2004-04-26 16:52:54 +0000
committerDavid Zeuthen <david@fubar.dk>2004-04-26 16:52:54 +0000
commit2c043493418bd3d8420f9d31a9e52b09140c5234 (patch)
tree560ca835d64473c3347a6bda6a5ad1ab07e53d76 /hald/linux/osspec.c
parent1fd4f037c460bcd08ff21692c953b7ff4bfe8818 (diff)
new file because with the recent change in how probing is handled, myHAL_0_2_90
CD-ROM wasn't added until 30 seconds late into the process as the macio glue wasn't handled add linux/macio_bus_device.c add macio_bus_handler to bus_device_handlers Add macio mapping
Diffstat (limited to 'hald/linux/osspec.c')
-rw-r--r--hald/linux/osspec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hald/linux/osspec.c b/hald/linux/osspec.c
index 1364b14e..ad3467d9 100644
--- a/hald/linux/osspec.c
+++ b/hald/linux/osspec.c
@@ -68,6 +68,7 @@ extern BusDeviceHandler usb_bus_handler;
extern BusDeviceHandler usbif_bus_handler;
extern BusDeviceHandler ide_host_bus_handler;
extern BusDeviceHandler ide_bus_handler;
+extern BusDeviceHandler macio_bus_handler;
/*
* NOTE! Order can be significant here, especially at startup time
@@ -95,6 +96,7 @@ static BusDeviceHandler* bus_device_handlers[] = {
&usbif_bus_handler,
&ide_host_bus_handler,
&ide_bus_handler,
+ &macio_bus_handler,
NULL
};