hal/hald/linux2 blockdev.c, 1.23, 1.24 classdev.c, 1.32, 1.33 coldplug.c, 1.17, 1.18 hotplug.c, 1.17, 1.18 ids.c, 1.6, 1.7 osspec.c, 1.28, 1.29 pcmcia_cs.h, 1.2, 1.3 pcmcia_utils.h, 1.2, 1.3 physdev.c, 1.20, 1.21

Richard Hughes hughsient at freedesktop.org
Tue Sep 27 02:42:15 PDT 2005


Update of /cvs/hal/hal/hald/linux2
In directory gabe:/tmp/cvs-serv20732/hald/linux2

Modified Files:
	blockdev.c classdev.c coldplug.c hotplug.c ids.c osspec.c 
	pcmcia_cs.h pcmcia_utils.h physdev.c 
Log Message:
Replace kernel-style datatypes (like _u8 and __s16) with their appropriate standard datatype.

Index: blockdev.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/blockdev.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- blockdev.c	10 Aug 2005 09:05:58 -0000	1.23
+++ blockdev.c	27 Sep 2005 09:42:12 -0000	1.24
@@ -33,7 +33,7 @@
 #include <string.h>
 #include <mntent.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>
@@ -45,7 +45,7 @@
 
 #include <limits.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <fcntl.h>

Index: classdev.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/classdev.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- classdev.c	22 Aug 2005 08:39:19 -0000	1.32
+++ classdev.c	27 Sep 2005 09:42:12 -0000	1.33
@@ -35,7 +35,7 @@
 #include <string.h>
 #include <mntent.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>
@@ -46,7 +46,7 @@
 
 #include <limits.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <fcntl.h>

Index: coldplug.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/coldplug.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- coldplug.c	29 Jul 2005 20:32:57 -0000	1.17
+++ coldplug.c	27 Sep 2005 09:42:12 -0000	1.18
@@ -31,7 +31,7 @@
 #include <string.h>
 #include <mntent.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <unistd.h>
 

Index: hotplug.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/hotplug.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- hotplug.c	29 Jul 2005 20:32:57 -0000	1.17
+++ hotplug.c	27 Sep 2005 09:42:12 -0000	1.18
@@ -31,7 +31,7 @@
 #include <string.h>
 #include <mntent.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>

Index: ids.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/ids.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- ids.c	1 Aug 2005 17:41:37 -0000	1.6
+++ ids.c	27 Sep 2005 09:42:12 -0000	1.7
@@ -32,7 +32,7 @@
 #include <string.h>
 #include <mntent.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>

Index: osspec.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/osspec.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- osspec.c	29 Jul 2005 20:32:57 -0000	1.28
+++ osspec.c	27 Sep 2005 09:42:12 -0000	1.29
@@ -44,7 +44,7 @@
 #include <sys/un.h>
 #include <sys/utsname.h>
 #include <unistd.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>

Index: pcmcia_cs.h
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/pcmcia_cs.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pcmcia_cs.h	29 Jul 2005 20:32:57 -0000	1.2
+++ pcmcia_cs.h	27 Sep 2005 09:42:12 -0000	1.3
@@ -32,7 +32,7 @@
 #ifndef PCMCIA_CS_H
 #define PCMCIA_CS_H
 
-#include <sys/types.h>
+#include <stdint.h>
 
 /* cs_types.h */
 typedef u_short	ioaddr_t;

Index: pcmcia_utils.h
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/pcmcia_utils.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pcmcia_utils.h	29 Jul 2005 20:32:57 -0000	1.2
+++ pcmcia_utils.h	27 Sep 2005 09:42:13 -0000	1.3
@@ -35,7 +35,7 @@
 #include <sys/time.h>
 #include <sys/ioctl.h>
 #include <sys/stat.h>
-#include <sys/types.h>
+#include <stdint.h>
 
 #include "pcmcia_cs.h"
 

Index: physdev.c
===================================================================
RCS file: /cvs/hal/hal/hald/linux2/physdev.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- physdev.c	29 Aug 2005 15:42:10 -0000	1.20
+++ physdev.c	27 Sep 2005 09:42:13 -0000	1.21
@@ -31,7 +31,7 @@
 #include <string.h>
 #include <mntent.h>
 #include <errno.h>
-#include <sys/types.h>
+#include <stdint.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>




More information about the hal-commit mailing list