mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 17:14:14 +08:00
73a23d7710
Since we no longer (want to) export any libc symbols the _user portions of any drivers need to be built into image rather than the module. I missed this for the watchdog. Fix the watchdog accordingly. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Richard Weinberger <richard@nod.at>
10 lines
217 B
C
10 lines
217 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/export.h>
|
|
#include "harddog.h"
|
|
|
|
#if IS_MODULE(CONFIG_UML_WATCHDOG)
|
|
EXPORT_SYMBOL(start_watchdog);
|
|
EXPORT_SYMBOL(stop_watchdog);
|
|
EXPORT_SYMBOL(ping_watchdog);
|
|
#endif
|