summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Porotchkin <kostap@marvell.com>2018-06-21 14:49:00 +0300
committerKostya Porotchkin <kostap@marvell.com>2018-06-24 10:21:01 +0300
commit0c2ed79335f0d66395a168345621ada731e8d5ac (patch)
treec22fc8ccbe37e76a00ac652808600d6c28a93392
parentd66c7b4db5de57428ff4f61382ce39ac5af818e7 (diff)
fix: thermal: Fix the license and platform file name
Set the thermal driver license to BSD 3 instead of GPL 2. Rename marvell_thermal.c to plat_thermal.c to be in sync the rest of files in A8K platform folder. Change-Id: Ie9d8d80d529a7f200198a21f9c66f65be94d78fc Signed-off-by: Konstantin Porotchkin <kostap@marvell.com> Reviewed-on: http://vgitil04.il.marvell.com:8080/57111 Reviewed-by: Omri Itach <omrii@marvell.com>
-rw-r--r--drivers/marvell/thermal.c4
-rw-r--r--include/drivers/marvell/thermal.h2
-rw-r--r--plat/marvell/a8k/common/a8k_common.mk2
-rw-r--r--plat/marvell/a8k/common/plat_thermal.c (renamed from plat/marvell/a8k/common/marvell_thermal.c)0
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/marvell/thermal.c b/drivers/marvell/thermal.c
index c565fb5a..c2703d7a 100644
--- a/drivers/marvell/thermal.c
+++ b/drivers/marvell/thermal.c
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2017 Marvell International Ltd.
*
- * SPDX-License-Identifier: GPL-2.0
+ * SPDX-License-Identifier: BSD-3-Clause
* https://spdx.org/licenses
*/
@@ -25,7 +25,7 @@ int marvell_thermal_init(struct tsen_config *tsen_cfg)
return -1;
}
- INFO("thermal sensor was initialized\n");
+ VERBOSE("thermal sensor was initialized\n");
return 0;
}
diff --git a/include/drivers/marvell/thermal.h b/include/drivers/marvell/thermal.h
index 10100a8b..b8eb19d0 100644
--- a/include/drivers/marvell/thermal.h
+++ b/include/drivers/marvell/thermal.h
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2017 Marvell International Ltd.
*
- * SPDX-License-Identifier: GPL-2.0
+ * SPDX-License-Identifier: BSD-3-Clause
* https://spdx.org/licenses
*/
diff --git a/plat/marvell/a8k/common/a8k_common.mk b/plat/marvell/a8k/common/a8k_common.mk
index a4e3e87c..5c98878c 100644
--- a/plat/marvell/a8k/common/a8k_common.mk
+++ b/plat/marvell/a8k/common/a8k_common.mk
@@ -79,7 +79,7 @@ BLE_SOURCES := $(PLAT_COMMON_BASE)/plat_ble_setup.c \
$(PLAT_COMMON_BASE)/plat_pm.c \
$(MARVELL_DRV_BASE)/aro.c \
$(MARVELL_DRV_BASE)/thermal.c \
- $(PLAT_COMMON_BASE)/marvell_thermal.c \
+ $(PLAT_COMMON_BASE)/plat_thermal.c \
$(BLE_PORTING_SOURCES) \
$(MARVELL_DRV_BASE)/ccu.c \
$(MARVELL_DRV_BASE)/io_win.c
diff --git a/plat/marvell/a8k/common/marvell_thermal.c b/plat/marvell/a8k/common/plat_thermal.c
index fe6de66b..fe6de66b 100644
--- a/plat/marvell/a8k/common/marvell_thermal.c
+++ b/plat/marvell/a8k/common/plat_thermal.c