[PATCH] Trivial C99 change to rcupdate.h

From: Art Haas
Date: Wed Dec 31 2003 - 10:08:26 EST


Hi.

Here's a trivial patch that replaces the GNU initializers with
C99 initializers.

Art Haas

===== include/linux/rcupdate.h 1.4 vs edited =====
--- 1.4/include/linux/rcupdate.h Thu Oct 2 02:12:13 2003
+++ edited/include/linux/rcupdate.h Tue Dec 30 19:54:24 2003
@@ -55,7 +55,7 @@
};

#define RCU_HEAD_INIT(head) \
- { list: LIST_HEAD_INIT(head.list), func: NULL, arg: NULL }
+ { .list = LIST_HEAD_INIT(head.list), .func = NULL, .arg = NULL }
#define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT(head)
#define INIT_RCU_HEAD(ptr) do { \
INIT_LIST_HEAD(&(ptr)->list); (ptr)->func = NULL; (ptr)->arg = NULL; \
--
Man once surrendering his reason, has no remaining guard against absurdities
the most monstrous, and like a ship without rudder, is the sport of every wind.

-Thomas Jefferson to James Smith, 1822
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/