Skip to content
Snippets Groups Projects
Commit 811f01aa authored by Brian J. Murrell's avatar Brian J. Murrell
Browse files

b=16395

i=Ricardo.M.Correia
i=adilger

Fix macro to conform to function-like-macros:
http://gcc.gnu.org/onlinedocs/cpp/Function_002dlike-Macros.html#Function_002dlike-Macros
Note that this error is in the upstream patches from Qaudrics.
parent cad6bb55
No related merge requests found
...@@ -1693,7 +1693,7 @@ Index: linux-269-5502/include/linux/ptrack.h ...@@ -1693,7 +1693,7 @@ Index: linux-269-5502/include/linux/ptrack.h
+ .ptrack_list = LIST_HEAD_INIT(tsk.ptrack_list) + .ptrack_list = LIST_HEAD_INIT(tsk.ptrack_list)
+ +
+#else +#else
+#define ptrack_call_callbacks (phase, child) (0) +#define ptrack_call_callbacks(phase, child) (0)
+ +
+#define INIT_TASK_PTRACK(tsk) +#define INIT_TASK_PTRACK(tsk)
+ +
......
...@@ -991,7 +991,7 @@ Index: LINUX-SRC-TREE/include/linux/ptrack.h ...@@ -991,7 +991,7 @@ Index: LINUX-SRC-TREE/include/linux/ptrack.h
+ .ptrack_list = LIST_HEAD_INIT(tsk.ptrack_list) + .ptrack_list = LIST_HEAD_INIT(tsk.ptrack_list)
+ +
+#else +#else
+#define ptrack_call_callbacks (phase, child) (0) +#define ptrack_call_callbacks(phase, child) (0)
+ +
+#define INIT_TASK_PTRACK(tsk) +#define INIT_TASK_PTRACK(tsk)
+ +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment