amlogic: Fix prefixes in the thermal driver
authorCarlo Caione <[email protected]>
Sun, 25 Aug 2019 17:09:59 +0000 (18:09 +0100)
committerCarlo Caione <[email protected]>
Thu, 5 Sep 2019 09:39:30 +0000 (10:39 +0100)
No need to have a special SoC-specific prefix.

Signed-off-by: Carlo Caione <[email protected]>
Change-Id: I0da543e7d92d56604e79440a98027ffd9a2eaa59

plat/amlogic/common/aml_thermal.c
plat/amlogic/common/include/aml_private.h
plat/amlogic/gxbb/gxbb_bl31_setup.c
plat/amlogic/gxl/gxl_bl31_setup.c

index 268606cd9614b24dac1d6545f07116fc4ec66d5e..0a57f10f4efb2c1a0fd0a613f517548ab7ade4cb 100644 (file)
@@ -13,7 +13,7 @@ static int32_t modules_initialized = -1;
 /*******************************************************************************
  * Unknown commands related to something thermal-related
  ******************************************************************************/
-void gxbb_thermal_unknown(void)
+void aml_thermal_unknown(void)
 {
        uint16_t ret;
 
index 3d7e6ebdab47ae6d0bbee4ec51e45755b39530e2..9670c8783526070b16abc62bfb70adcbe92f049a 100644 (file)
@@ -33,7 +33,7 @@ void scpi_unknown_thermal(uint32_t arg0, uint32_t arg1,
 void scpi_upload_scp_fw(uintptr_t addr, size_t size, int send);
 
 /* Peripherals */
-void gxbb_thermal_unknown(void);
+void aml_thermal_unknown(void);
 uint64_t aml_efuse_read(void *dst, uint32_t offset, uint32_t size);
 uint64_t aml_efuse_user_max(void);
 
index c474d6967c4d29d39e350028b3f4593860a43b5d..cff29b39206486ad7ae3dc5bfa2faa62337a3cb0 100644 (file)
@@ -142,5 +142,5 @@ void bl31_platform_setup(void)
        gicv2_pcpu_distif_init();
        gicv2_cpuif_enable();
 
-       gxbb_thermal_unknown();
+       aml_thermal_unknown();
 }
index d44b9aaa36671dff7ce2c9da4cca3dfb5216b136..fbfb76a0a8fe2e86bb54e815e7d83eb5c38b27f1 100644 (file)
@@ -158,5 +158,5 @@ void bl31_platform_setup(void)
 
        gxl_scp_boot();
 
-       gxbb_thermal_unknown();
+       aml_thermal_unknown();
 }