1 /* 2 * thermal_exynos.h - Samsung EXYNOS TMU device tree definitions 3 * 4 * Copyright (C) 2014 Samsung Electronics 5 * Lukasz Majewski <l.majewski@samsung.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 */ 18 19 #ifndef _EXYNOS_THERMAL_TMU_DT_H 20 #define _EXYNOS_THERMAL_TMU_DT_H 21 22 #define TYPE_ONE_POINT_TRIMMING 0 23 #define TYPE_ONE_POINT_TRIMMING_25 1 24 #define TYPE_ONE_POINT_TRIMMING_85 2 25 #define TYPE_TWO_POINT_TRIMMING 3 26 #define TYPE_NONE 4 27 28 #endif /* _EXYNOS_THERMAL_TMU_DT_H */ 29