Commit 7a0e42f1 authored by Heiko Carstens's avatar Heiko Carstens

[S390] asm offsets: fix coding style

Because of readability reasons we ignore the 80 character line limit
in asm offsets. Just one line per define, nothing else.
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
parent 3a81b171
...@@ -27,12 +27,9 @@ int main(void) ...@@ -27,12 +27,9 @@ int main(void)
BLANK(); BLANK();
DEFINE(__TASK_pid, offsetof(struct task_struct, pid)); DEFINE(__TASK_pid, offsetof(struct task_struct, pid));
BLANK(); BLANK();
DEFINE(__THREAD_per_cause, DEFINE(__THREAD_per_cause, offsetof(struct task_struct, thread.per_event.cause));
offsetof(struct task_struct, thread.per_event.cause)); DEFINE(__THREAD_per_address, offsetof(struct task_struct, thread.per_event.address));
DEFINE(__THREAD_per_address, DEFINE(__THREAD_per_paid, offsetof(struct task_struct, thread.per_event.paid));
offsetof(struct task_struct, thread.per_event.address));
DEFINE(__THREAD_per_paid,
offsetof(struct task_struct, thread.per_event.paid));
BLANK(); BLANK();
DEFINE(__TI_task, offsetof(struct thread_info, task)); DEFINE(__TI_task, offsetof(struct thread_info, task));
DEFINE(__TI_domain, offsetof(struct thread_info, exec_domain)); DEFINE(__TI_domain, offsetof(struct thread_info, exec_domain));
......
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