Commit 9a6310a6 authored by Art Haas's avatar Art Haas Committed by David Mosberger

[PATCH] ia64: C99 designated initializer for include/asm-ia64/thread_info.h

Here's a small C99 designated initializer patch for the subject file.
The patch is against 2.5.43.
parent 36a3528c
......@@ -37,11 +37,11 @@ struct thread_info {
#define INIT_THREAD_INFO(ti) \
{ \
exec_domain: &default_exec_domain, \
flags: 0, \
cpu: 0, \
addr_limit: KERNEL_DS, \
preempt_count: 0, \
.exec_domain = &default_exec_domain, \
.flags = 0, \
.cpu = 0, \
.addr_limit = KERNEL_DS, \
.preempt_count = 0, \
}
/* how to get the thread information struct from C */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment