tracehook: kerneldoc fix

My last change to tracehook.h made it confuse the kerneldoc parser.
Move the #define's before the comment so it's happy again.

Signed-off-by: Roland McGrath <roland@redhat.com>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Roland McGrath and committed by Linus Torvalds 115a326c 18f6db95

+3 -2
+3 -2
include/linux/tracehook.h
··· 487 487 return notify || (current->ptrace & PT_PTRACED); 488 488 } 489 489 490 + #define DEATH_REAP -1 491 + #define DEATH_DELAYED_GROUP_LEADER -2 492 + 490 493 /** 491 494 * tracehook_notify_death - task is dead, ready to notify parent 492 495 * @task: @current task now exiting ··· 504 501 * 505 502 * Called with write_lock_irq(&tasklist_lock) held. 506 503 */ 507 - #define DEATH_REAP -1 508 - #define DEATH_DELAYED_GROUP_LEADER -2 509 504 static inline int tracehook_notify_death(struct task_struct *task, 510 505 void **death_cookie, int group_dead) 511 506 {