mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
80503b23b2
Based on 1 normalized pattern(s): licensed under the gpl 2 or later extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 82 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190524100845.150836982@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
268 B
C
14 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_ */
|