amdgpu/dc: rename bios get_image symbol to something more searchable.
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>
This commit is contained in:
committed by
Alex Deucher
parent
04e212926f
commit
2a206cc20a
@ -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;
|
||||
|
@ -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));
|
||||
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -28,13 +28,13 @@
|
||||
|
||||
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
|
||||
|
Reference in New Issue
Block a user