mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-13 13:30:08 +00:00
[ Upstream commit 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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
10 lines
247 B
C
10 lines
247 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef UM_WATCHDOG_H
|
|
#define UM_WATCHDOG_H
|
|
|
|
int start_watchdog(int *in_fd_ret, int *out_fd_ret, char *sock);
|
|
void stop_watchdog(int in_fd, int out_fd);
|
|
int ping_watchdog(int fd);
|
|
|
|
#endif /* UM_WATCHDOG_H */
|