mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
0376148f30
Based on 1 normalized pattern(s): license terms gnu general public license v2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 37 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190528170027.724130665@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
431 B
C
16 lines
431 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) ST-Ericsson 2013
|
|
* Author: Hongbo Zhang <hongbo.zhang@linaro.com>
|
|
*/
|
|
|
|
#ifndef PWR_AB8500_H
|
|
#define PWR_AB8500_H
|
|
|
|
extern const struct abx500_res_to_temp ab8500_temp_tbl_a_thermistor[];
|
|
extern const int ab8500_temp_tbl_a_size;
|
|
|
|
extern const struct abx500_res_to_temp ab8500_temp_tbl_b_thermistor[];
|
|
extern const int ab8500_temp_tbl_b_size;
|
|
|
|
#endif /* PWR_AB8500_H */
|