message: y2038: __get_old_timespec32() can be static\n\nThe kbuild test robot reports two new warnings with the previous\npatch:\n\n kernel/time/time.c:866:5: sparse: symbol '__get_old_timespec32' was not declared. Should it be static?\n kernel/time/time.c:882:5: sparse: symbol '__put_old_timespec32' was not declared. Should it be static?\n\nThese are actually older bugs, but came up now after the\nsymbol got renamed. Fortunately, commit afef05cf238c ("time:\nEnable get/put_compat_itimerspec64 always") makes the two functions\n(__compat_get_timespec64/__compat_get_timespec64) local to time.c already,\nso we can mark them as 'static'.\n\nFixes: ee16c8f415e4 ("y2038: Globally rename compat_time to old_time32")\nSigned-off-by: kbuild test robot <fengguang.wu@intel.com>\n[arnd: added changelog text]\nSigned-off-by: Arnd Bergmann <arnd@arndb.de>\n