2021-10-27 18:46:41 +05:00
|
|
|
/*
|
|
|
|
* MCP4725 DAC driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Peter Meerwald <pmeerw@pmeerw.net>
|
2021-11-13 09:26:51 +05:00
|
|
|
*
|
|
|
|
* Licensed under the GPL-2 or later.
|
2021-10-27 18:46:41 +05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IIO_DAC_MCP4725_H_
|
|
|
|
#define IIO_DAC_MCP4725_H_
|
|
|
|
|
|
|
|
struct mcp4725_platform_data {
|
2021-11-13 09:26:51 +05:00
|
|
|
u16 vref_mv;
|
2021-10-27 18:46:41 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* IIO_DAC_MCP4725_H_ */
|