Varun Wadekar | dbf8a2f | 2020-06-23 08:13:57 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #include <platform.h> | ||||
8 | |||||
9 | /* | ||||
10 | * Start the watchdog timer | ||||
11 | */ | ||||
12 | void tftf_platform_watchdog_set(void) | ||||
13 | { | ||||
14 | ; /* do nothing */ | ||||
15 | } | ||||
16 | |||||
17 | /* | ||||
18 | * Stop the watchdog timer | ||||
19 | */ | ||||
20 | void tftf_platform_watchdog_reset(void) | ||||
21 | { | ||||
22 | ; /* do nothing */ | ||||
23 | } |