blob: a49fe28469d963f9db8ce9d36f3144c11d265c30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __I2C_GENERIC_ADAU7002_CHIP_H__
#define __I2C_GENERIC_ADAU7002_CHIP_H__
struct drivers_generic_adau7002_config {
/* Delay */
unsigned int wakeup_delay;
};
#endif /* __I2C_GENERIC_ADAU7002_CHIP_H__ */
|