Index: kernel/generic/include/sysinfo/sysinfo.h
===================================================================
--- kernel/generic/include/sysinfo/sysinfo.h	(revision 1167520724b9b526c27b67f2d4bc447ef626240c)
+++ kernel/generic/include/sysinfo/sysinfo.h	(revision c06eb06bfa73f0453ea411eebf5fa21013e9f555)
@@ -27,5 +27,5 @@
  */
 
- /** @addtogroup generic	
+/** @addtogroup generic	
  * @{
  */
@@ -35,29 +35,25 @@
 #include <arch/types.h>
 
-typedef union sysinfo_item_val
-{
+typedef union sysinfo_item_val {
 	unative_t val;
 	void *fn; 
-}sysinfo_item_val_t;
+} sysinfo_item_val_t;
 
-typedef struct sysinfo_item
-{
+typedef struct sysinfo_item {
 	char *name;
-	union
-	{
+	union {
 		unative_t val;
 		void *fn; 
-	}val;
+	} val;
 
-	union
-	{
+	union {
 		struct sysinfo_item *table;
 		void *fn;
-	}subinfo;
+	} subinfo;
 
 	struct sysinfo_item *next;
 	int val_type;
 	int subinfo_type;
-}sysinfo_item_t;
+} sysinfo_item_t;
 
 #define SYSINFO_VAL_VAL 0
@@ -73,9 +69,8 @@
 typedef unative_t (*sysinfo_subinfo_fn_t)(const char *subname);
 
-typedef struct sysinfo_rettype
-{
+typedef struct sysinfo_rettype {
 	unative_t val;
 	unative_t valid;
-}sysinfo_rettype_t;
+} sysinfo_rettype_t;
 
 void sysinfo_set_item_val(const char *name,sysinfo_item_t **root,unative_t val);
@@ -89,7 +84,4 @@
 unative_t sys_sysinfo_value(unative_t ptr,unative_t len);
 
-
-
- /** @}
+/** @}
  */
-
