hal ChangeLog,1.176,1.177
David Zeuthen
david at pdx.freedesktop.org
Mon Jul 5 11:21:09 PDT 2004
- Previous message: hal/tools/linux hal_dev.c,1.1,1.2
- Next message: hal/hald/linux block_class_device.c, 1.33, 1.34 bus_device.c, 1.11,
1.12 bus_device.h, 1.6, 1.7 class_device.c, 1.16,
1.17 class_device.h, 1.8, 1.9 ide_bus_device.c, 1.5,
1.6 ide_host_bus_device.c, 1.6, 1.7 ieee1394_class_device.c,
1.1, 1.2 ieee1394_host_class_device.c, 1.1,
1.2 ieee1394_node_class_device.c, 1.1,
1.2 input_class_device.c, 1.8, 1.9 macio_bus_device.c, 1.2,
1.3 net_class_device.c, 1.12, 1.13 pci_bus_device.c, 1.6,
1.7 pcmcia_socket_class_device.c, 1.2,
1.3 platform_bus_device.c, 1.1, 1.2 printer_class_device.c,
1.8, 1.9 scsi_device_class_device.c, 1.7,
1.8 scsi_generic_class_device.c, 1.2,
1.3 scsi_host_class_device.c, 1.7, 1.8 usb_bus_device.c, 1.10,
1.11 usbif_bus_device.c, 1.7, 1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvs/hal/hal
In directory pdx:/tmp/cvs-serv6832
Modified Files:
ChangeLog
Log Message:
2004-07-05 David Zeuthen <david at fubar.dk>
* hald/linux/ieee1394_host_class_device.c: Add class_device_in_gdl
method
* hald/linux/ieee1394_node_class_device.c: Add class_device_in_gdl
method
* hald/linux/ieee1394_class_device.c: Add class_device_in_gdl method
* hald/linux/pcmcia_socket_class_device.c: Add class_device_in_gdl
method
* hald/linux/block_class_device.c: Add class_device_in_gdl method
* hald/linux/scsi_device_class_device.c: Add class_device_in_gdl method
* hald/linux/scsi_host_class_device.c: Add class_device_in_gdl method
* hald/linux/scsi_generic_class_device.c: Add class_device_in_gdl
method
* hald/linux/printer_class_device.c: Add class_device_in_gdl method
* hald/linux/net_class_device.c: Add class_device_in_gdl method
* hald/linux/input_class_device.c: Add class_device_in_gdl method
* hald/linux/class_device.c (class_device_in_gdl): New function
(class_device_move_from_tdl_to_gdl): New function, specialised version
of device_move_from_tdl_to_gdl that calls in_gdl method
(class_device_final): Call class_device_move_from_tdl_to_gdl instead
and create a ClassAsyncData variable to carry data around
* hald/linux/class_device.h: Add in_gdl method to ClassDeviceHandler
and prototype for default method class_device_in_gdl ().
* hald/linux/pci_bus_device.c: Add bus_device_in_gdl method
* hald/linux/usb_bus_device.c: Add bus_device_in_gdl method
* hald/linux/usbif_bus_device.c: Add bus_device_in_gdl method
* hald/linux/ide_host_bus_device.c: Add bus_device_in_gdl method
* hald/linux/ide_bus_device.c: Add bus_device_in_gdl method
* hald/linux/macio_bus_device.c: Add bus_device_in_gdl method
* hald/linux/platform_bus_device.c: Add bus_device_in_gdl method
* hald/linux/bus_device.c (bus_device_in_gdl): New function
(bus_device_move_from_tdl_to_gdl): New function, specialised version
of device_move_from_tdl_to_gdl that calls in_gdl method
(bus_device_got_parent): Call bus_device_move_from_tdl_to_gdl instead
and carry on the BusAsyncData bad variable; conditionally free it
on failure though.
* hald/linux/bus_device.h: Add in_gdl method to BusDeviceHandler
and prototype for default method bus_device_in_gdl ().
Index: ChangeLog
===================================================================
RCS file: /cvs/hal/hal/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -d -r1.176 -r1.177
--- ChangeLog 5 Jul 2004 17:00:32 -0000 1.176
+++ ChangeLog 5 Jul 2004 18:21:07 -0000 1.177
@@ -1,5 +1,66 @@
2004-07-05 David Zeuthen <david at fubar.dk>
+ * hald/linux/ieee1394_host_class_device.c: Add class_device_in_gdl
+ method
+
+ * hald/linux/ieee1394_node_class_device.c: Add class_device_in_gdl
+ method
+
+ * hald/linux/ieee1394_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/pcmcia_socket_class_device.c: Add class_device_in_gdl
+ method
+
+ * hald/linux/block_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/scsi_device_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/scsi_host_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/scsi_generic_class_device.c: Add class_device_in_gdl
+ method
+
+ * hald/linux/printer_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/net_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/input_class_device.c: Add class_device_in_gdl method
+
+ * hald/linux/class_device.c (class_device_in_gdl): New function
+ (class_device_move_from_tdl_to_gdl): New function, specialised version
+ of device_move_from_tdl_to_gdl that calls in_gdl method
+ (class_device_final): Call class_device_move_from_tdl_to_gdl instead
+ and create a ClassAsyncData variable to carry data around
+
+ * hald/linux/class_device.h: Add in_gdl method to ClassDeviceHandler
+ and prototype for default method class_device_in_gdl ().
+
+ * hald/linux/pci_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/usb_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/usbif_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/ide_host_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/ide_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/macio_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/platform_bus_device.c: Add bus_device_in_gdl method
+
+ * hald/linux/bus_device.c (bus_device_in_gdl): New function
+ (bus_device_move_from_tdl_to_gdl): New function, specialised version
+ of device_move_from_tdl_to_gdl that calls in_gdl method
+ (bus_device_got_parent): Call bus_device_move_from_tdl_to_gdl instead
+ and carry on the BusAsyncData bad variable; conditionally free it
+ on failure though.
+
+ * hald/linux/bus_device.h: Add in_gdl method to BusDeviceHandler
+ and prototype for default method bus_device_in_gdl ().
+
+2004-07-05 David Zeuthen <david at fubar.dk>
+
* tools/linux/hal_dev.c (main): Disable logging. Also fork(2) a
new process and make parent exit to temporarily fix that udevstart
takes a few minutes to run
- Previous message: hal/tools/linux hal_dev.c,1.1,1.2
- Next message: hal/hald/linux block_class_device.c, 1.33, 1.34 bus_device.c, 1.11,
1.12 bus_device.h, 1.6, 1.7 class_device.c, 1.16,
1.17 class_device.h, 1.8, 1.9 ide_bus_device.c, 1.5,
1.6 ide_host_bus_device.c, 1.6, 1.7 ieee1394_class_device.c,
1.1, 1.2 ieee1394_host_class_device.c, 1.1,
1.2 ieee1394_node_class_device.c, 1.1,
1.2 input_class_device.c, 1.8, 1.9 macio_bus_device.c, 1.2,
1.3 net_class_device.c, 1.12, 1.13 pci_bus_device.c, 1.6,
1.7 pcmcia_socket_class_device.c, 1.2,
1.3 platform_bus_device.c, 1.1, 1.2 printer_class_device.c,
1.8, 1.9 scsi_device_class_device.c, 1.7,
1.8 scsi_generic_class_device.c, 1.2,
1.3 scsi_host_class_device.c, 1.7, 1.8 usb_bus_device.c, 1.10,
1.11 usbif_bus_device.c, 1.7, 1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the hal-commit
mailing list