hal/hald/linux2/probing linux_dvd_rw_utils.c, 1.2,
1.3 probe-hiddev.c, 1.4, 1.5 probe-input.c, 1.9,
1.10 probe-pc-floppy.c, 1.5, 1.6 probe-printer.c, 1.4,
1.5 probe-smbios.c, 1.4, 1.5 probe-storage.c, 1.14,
1.15 probe-volume.c, 1.17, 1.18
Richard Hughes
hughsient at freedesktop.org
Tue Sep 27 02:42:15 PDT 2005
- Previous message: hal/hald hald.c, 1.39, 1.40 hald_dbus.c, 1.41, 1.42 hald_test.c, 1.5,
1.6 hald_test_libhal.c, 1.6, 1.7 util.c, 1.26, 1.27
- Next message: hal/tools/linux add_selinux.c,1.5,1.6 hal_hotplug.c,1.28,1.29
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvs/hal/hal/hald/linux2/probing
In directory gabe:/tmp/cvs-serv20732/hald/linux2/probing
Modified Files:
linux_dvd_rw_utils.c probe-hiddev.c probe-input.c
probe-pc-floppy.c probe-printer.c probe-smbios.c
probe-storage.c probe-volume.c
Log Message:
Replace kernel-style datatypes (like _u8 and __s16) with their appropriate standard datatype.
Index: linux_dvd_rw_utils.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/linux_dvd_rw_utils.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- linux_dvd_rw_utils.c 15 Jul 2005 19:54:30 -0000 1.2
+++ linux_dvd_rw_utils.c 27 Sep 2005 09:42:13 -0000 1.3
@@ -38,7 +38,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
Index: probe-hiddev.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-hiddev.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- probe-hiddev.c 29 Jul 2005 20:32:57 -0000 1.4
+++ probe-hiddev.c 27 Sep 2005 09:42:13 -0000 1.5
@@ -32,9 +32,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
-#include <asm/types.h>
+#include <stdint.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/hiddev.h>
Index: probe-input.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-input.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- probe-input.c 23 Aug 2005 19:59:45 -0000 1.9
+++ probe-input.c 27 Sep 2005 09:42:13 -0000 1.10
@@ -31,7 +31,7 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
Index: probe-pc-floppy.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-pc-floppy.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- probe-pc-floppy.c 29 Jul 2005 20:32:57 -0000 1.5
+++ probe-pc-floppy.c 27 Sep 2005 09:42:13 -0000 1.6
@@ -32,9 +32,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
-#include <asm/types.h>
+#include <stdint.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/kdev_t.h>
Index: probe-printer.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-printer.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- probe-printer.c 29 Jul 2005 20:32:57 -0000 1.4
+++ probe-printer.c 27 Sep 2005 09:42:13 -0000 1.5
@@ -30,9 +30,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
-#include <asm/types.h>
+#include <stdint.h>
#include <fcntl.h>
#include <unistd.h>
Index: probe-smbios.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-smbios.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- probe-smbios.c 29 Jul 2005 20:32:57 -0000 1.4
+++ probe-smbios.c 27 Sep 2005 09:42:13 -0000 1.5
@@ -29,7 +29,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
Index: probe-storage.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-storage.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- probe-storage.c 29 Jul 2005 20:32:57 -0000 1.14
+++ probe-storage.c 27 Sep 2005 09:42:13 -0000 1.15
@@ -32,9 +32,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
-#include <asm/types.h>
+#include <stdint.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/kdev_t.h>
Index: probe-volume.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/probing/probe-volume.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- probe-volume.c 25 Aug 2005 20:40:47 -0000 1.17
+++ probe-volume.c 27 Sep 2005 09:42:13 -0000 1.18
@@ -32,9 +32,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
-#include <sys/types.h>
+#include <stdint.h>
#include <sys/stat.h>
-#include <asm/types.h>
+#include <stdint.h>
#include <fcntl.h>
#include <unistd.h>
#include <ctype.h>
- Previous message: hal/hald hald.c, 1.39, 1.40 hald_dbus.c, 1.41, 1.42 hald_test.c, 1.5,
1.6 hald_test_libhal.c, 1.6, 1.7 util.c, 1.26, 1.27
- Next message: hal/tools/linux add_selinux.c,1.5,1.6 hal_hotplug.c,1.28,1.29
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the hal-commit
mailing list