From: Deepa Dinamani Date: Thu, 24 Jan 2019 08:29:20 +0000 (-0800) Subject: Input: input_event - fix the CONFIG_SPARC64 mixup X-Git-Tag: rel_imx_4.19.35_1.1.0~6949 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=3a3b6a6b15dbd99d83052070fda2ae2bfdd66dc6;p=linux.git Input: input_event - fix the CONFIG_SPARC64 mixup commit 141e5dcaa7356077028b4cd48ec351a38c70e5e5 upstream. Arnd Bergmann pointed out that CONFIG_* cannot be used in a uapi header. Override with an equivalent conditional. Fixes: 2e746942ebac ("Input: input_event - provide override for sparc64") Fixes: 152194fe9c3f ("Input: extend usable life of event timestamps to 2106 on 32 bit systems") Signed-off-by: Deepa Dinamani Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/uapi/linux/input.h b/include/uapi/linux/input.h index ffab958bc512..f056b2a00d5c 100644 --- a/include/uapi/linux/input.h +++ b/include/uapi/linux/input.h @@ -32,7 +32,7 @@ struct input_event { #define input_event_usec time.tv_usec #else __kernel_ulong_t __sec; -#ifdef CONFIG_SPARC64 +#if defined(__sparc__) && defined(__arch64__) unsigned int __usec; #else __kernel_ulong_t __usec;