mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 06:59:02 +07:00
a878a1a61a
MAX520 and MAX521 are protocol-compatible with the already supported chips, just have more channels. Signed-off-by: Antonio Fiol <antonio@fiol.es> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
16 lines
261 B
C
16 lines
261 B
C
/*
|
|
* MAX517 DAC driver
|
|
*
|
|
* Copyright 2011 Roland Stigge <stigge@antcom.de>
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
#ifndef IIO_DAC_MAX517_H_
|
|
#define IIO_DAC_MAX517_H_
|
|
|
|
struct max517_platform_data {
|
|
u16 vref_mv[8];
|
|
};
|
|
|
|
#endif /* IIO_DAC_MAX517_H_ */
|