h8300: fix PREEMPTION build, TI_PRE_COUNT undefined

Fix a build error for undefined 'TI_PRE_COUNT' by adding it to
asm-offsets.c.

h8300-linux-ld: arch/h8300/kernel/entry.o: in function `resume_kernel': (.text+0x29a): undefined reference to `TI_PRE_COUNT'

Link: https://lkml.kernel.org/r/20210212021650.22740-1-rdunlap@infradead.org
Fixes: df2078b8daa7 ("h8300: Low level entry")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Randy Dunlap and committed by Linus Torvalds ade9679c fee92a76

Changed files
+3
arch
h8300
kernel
+3
arch/h8300/kernel/asm-offsets.c
··· 63 63 OFFSET(TI_FLAGS, thread_info, flags); 64 64 OFFSET(TI_CPU, thread_info, cpu); 65 65 OFFSET(TI_PRE, thread_info, preempt_count); 66 + #ifdef CONFIG_PREEMPTION 67 + DEFINE(TI_PRE_COUNT, offsetof(struct thread_info, preempt_count)); 68 + #endif 66 69 67 70 return 0; 68 71 }