blob: be47a777276eb21023be0e6ca058fd227b400a6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */
#ifndef SUPERIO_NUVOTON_COMMON_HWM_H
#define SUPERIO_NUVOTON_COMMON_HWM_H
/* Nuvoton is a Winbond spin-off, so this code is for both */
#include <stdint.h>
void nuvoton_hwm_select_bank(const u16 base, const u8 bank);
#endif /* SUPERIO_NUVOTON_COMMON_HWM_H */
|