drivers/wifi: Remove unnecessary data structure copy
[coreboot2.git] / src / soc / mediatek / mt8196 / wdt.c
blob8b8db3bbac0f068a7b04ebe34d14be04d9dfe2a4
1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */
3 /*
4 * This file is created based on MT8196 Functional Specification
5 * Chapter number: 7.3.4.4
6 */
8 #include <device/mmio.h>
9 #include <soc/addressmap.h>
10 #include <soc/wdt.h>
12 #define MTK_WDT_CLR_STATUS 0x230001FF
14 void mtk_wdt_clr_status(void)
16 write32(&mtk_wdt->wdt_mode, MTK_WDT_CLR_STATUS);