amdgpu/dc: rename bios get_image symbol to something more searchable.
authorDave Airlie <airlied@redhat.com>
Fri, 29 Sep 2017 07:13:30 +0000 (17:13 +1000)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 29 Sep 2017 17:04:10 +0000 (13:04 -0400)
This just makes it easier to find.

Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
drivers/gpu/drm/amd/display/dc/bios/bios_parser_helper.c
drivers/gpu/drm/amd/display/dc/bios/bios_parser_helper.h

index f6828f4..2e003b5 100644 (file)
@@ -412,7 +412,7 @@ static enum bp_result bios_parser_get_voltage_ddc_info(struct dc_bios *dcb,
        if (!DATA_TABLES(VoltageObjectInfo))
                return result;
 
-       voltage_info_address = get_image(&bp->base, DATA_TABLES(VoltageObjectInfo), sizeof(ATOM_COMMON_TABLE_HEADER));
+       voltage_info_address = bios_get_image(&bp->base, DATA_TABLES(VoltageObjectInfo), sizeof(ATOM_COMMON_TABLE_HEADER));
 
        header = (ATOM_COMMON_TABLE_HEADER *) voltage_info_address;
 
@@ -2328,7 +2328,7 @@ static uint32_t get_dest_obj_list(struct bios_parser *bp,
                return 0;
 
        offset += sizeof(uint8_t);
-       *id_list = (uint16_t *)get_image(&bp->base, offset, *number * sizeof(uint16_t));
+       *id_list = (uint16_t *)bios_get_image(&bp->base, offset, *number * sizeof(uint16_t));
 
        if (!*id_list)
                return 0;
@@ -2355,7 +2355,7 @@ static uint32_t get_src_obj_list(struct bios_parser *bp, ATOM_OBJECT *object,
                return 0;
 
        offset += sizeof(uint8_t);
-       *id_list = (uint16_t *)get_image(&bp->base, offset, *number * sizeof(uint16_t));
+       *id_list = (uint16_t *)bios_get_image(&bp->base, offset, *number * sizeof(uint16_t));
 
        if (!*id_list)
                return 0;
index 852bb0d..0c623b3 100644 (file)
@@ -535,7 +535,7 @@ static enum bp_result bios_parser_get_voltage_ddc_info(struct dc_bios *dcb,
        if (!DATA_TABLES(voltageobject_info))
                return result;
 
-       voltage_info_address = get_image(&bp->base,
+       voltage_info_address = bios_get_image(&bp->base,
                        DATA_TABLES(voltageobject_info),
                        sizeof(struct atom_common_table_header));
 
index 8e56d2f..5c9e510 100644 (file)
@@ -33,7 +33,7 @@
 #include "command_table.h"
 #include "bios_parser_types_internal.h"
 
-uint8_t *get_image(struct dc_bios *bp,
+uint8_t *bios_get_image(struct dc_bios *bp,
        uint32_t offset,
        uint32_t size)
 {
index a8fbb82..c0047ef 100644 (file)
 
 struct bios_parser;
 
-uint8_t *get_image(struct dc_bios *bp, uint32_t offset,
+uint8_t *bios_get_image(struct dc_bios *bp, uint32_t offset,
        uint32_t size);
 
 bool bios_is_accelerated_mode(struct dc_bios *bios);
 void bios_set_scratch_acc_mode_change(struct dc_bios *bios);
 void bios_set_scratch_critical_state(struct dc_bios *bios, bool state);
 
-#define GET_IMAGE(type, offset) ((type *) get_image(&bp->base, offset, sizeof(type)))
+#define GET_IMAGE(type, offset) ((type *) bios_get_image(&bp->base, offset, sizeof(type)))
 
 #endif