blob: 08d1fa455bd6e17f79c886adfecfe239d14df502 [file] [log] [blame]
Varun Wadekardbf8a2f2020-06-23 08:13:57 -07001/*
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 */
12void tftf_platform_watchdog_set(void)
13{
14 ; /* do nothing */
15}
16
17/*
18 * Stop the watchdog timer
19 */
20void tftf_platform_watchdog_reset(void)
21{
22 ; /* do nothing */
23}