mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
ca07ee4e3d
Fix up inconsistent usage of upper and lowercase letters in "Samsung" and "Exynos" names. "SAMSUNG" and "EXYNOS" are not abbreviations but regular trademarked names. Therefore they should be written with lowercase letters starting with capital letter. The lowercase "Exynos" name is promoted by its manufacturer Samsung Electronics Co., Ltd., in advertisement materials and on website. Although advertisement materials usually use uppercase "SAMSUNG", the lowercase version is used in all legal aspects (e.g. on Wikipedia and in privacy/legal statements on https://www.samsung.com/semiconductor/privacy-global/). Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20200104152107.11407-7-krzk@kernel.org
19 lines
472 B
C
19 lines
472 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* thermal_exynos.h - Samsung Exynos TMU device tree definitions
|
|
*
|
|
* Copyright (C) 2014 Samsung Electronics
|
|
* Lukasz Majewski <l.majewski@samsung.com>
|
|
*/
|
|
|
|
#ifndef _EXYNOS_THERMAL_TMU_DT_H
|
|
#define _EXYNOS_THERMAL_TMU_DT_H
|
|
|
|
#define TYPE_ONE_POINT_TRIMMING 0
|
|
#define TYPE_ONE_POINT_TRIMMING_25 1
|
|
#define TYPE_ONE_POINT_TRIMMING_85 2
|
|
#define TYPE_TWO_POINT_TRIMMING 3
|
|
#define TYPE_NONE 4
|
|
|
|
#endif /* _EXYNOS_THERMAL_TMU_DT_H */
|