Commit 73f6d057 authored by Carlo Caione's avatar Carlo Caione
Browse files

amlogic: Fix prefixes in the thermal driver



No need to have a special SoC-specific prefix.
Signed-off-by: default avatarCarlo Caione <ccaione@baylibre.com>
Change-Id: I0da543e7d92d56604e79440a98027ffd9a2eaa59
parent 010fdc1b
...@@ -13,7 +13,7 @@ static int32_t modules_initialized = -1; ...@@ -13,7 +13,7 @@ static int32_t modules_initialized = -1;
/******************************************************************************* /*******************************************************************************
* Unknown commands related to something thermal-related * Unknown commands related to something thermal-related
******************************************************************************/ ******************************************************************************/
void gxbb_thermal_unknown(void) void aml_thermal_unknown(void)
{ {
uint16_t ret; uint16_t ret;
......
...@@ -33,7 +33,7 @@ void scpi_unknown_thermal(uint32_t arg0, uint32_t arg1, ...@@ -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); void scpi_upload_scp_fw(uintptr_t addr, size_t size, int send);
/* Peripherals */ /* 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_read(void *dst, uint32_t offset, uint32_t size);
uint64_t aml_efuse_user_max(void); uint64_t aml_efuse_user_max(void);
......
...@@ -142,5 +142,5 @@ void bl31_platform_setup(void) ...@@ -142,5 +142,5 @@ void bl31_platform_setup(void)
gicv2_pcpu_distif_init(); gicv2_pcpu_distif_init();
gicv2_cpuif_enable(); gicv2_cpuif_enable();
gxbb_thermal_unknown(); aml_thermal_unknown();
} }
...@@ -158,5 +158,5 @@ void bl31_platform_setup(void) ...@@ -158,5 +158,5 @@ void bl31_platform_setup(void)
gxl_scp_boot(); gxl_scp_boot();
gxbb_thermal_unknown(); aml_thermal_unknown();
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment