repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
15 lines
268 B
C
15 lines
268 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* MAX517 DAC driver
|
|
*
|
|
* Copyright 2011 Roland Stigge <stigge@antcom.de>
|
|
*/
|
|
#ifndef IIO_DAC_MAX517_H_
|
|
#define IIO_DAC_MAX517_H_
|
|
|
|
struct max517_platform_data {
|
|
u16 vref_mv[8];
|
|
};
|
|
|
|
#endif /* IIO_DAC_MAX517_H_ */
|