drm/amd: Avoid reading the VBIOS part number twice
The VBIOS part number is read both in amdgpu_atom_parse() as well as in atom_get_vbios_pn() and stored twice in the `struct atom_context` structure. Remove the first unnecessary read and move the `pr_info` line from that read into the second. v2: squash in unused variable removal Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
18cf073faa
commit
adf64e2142
@@ -1438,6 +1438,8 @@ static void atom_get_vbios_pn(struct atom_context *ctx)
|
||||
|
||||
ctx->vbios_pn[count] = 0;
|
||||
}
|
||||
|
||||
pr_info("ATOM BIOS: %s\n", ctx->vbios_pn);
|
||||
}
|
||||
|
||||
static void atom_get_vbios_version(struct atom_context *ctx)
|
||||
@@ -1460,11 +1462,9 @@ struct atom_context *amdgpu_atom_parse(struct card_info *card, void *bios)
|
||||
int base;
|
||||
struct atom_context *ctx =
|
||||
kzalloc(sizeof(struct atom_context), GFP_KERNEL);
|
||||
char *str;
|
||||
struct _ATOM_ROM_HEADER *atom_rom_header;
|
||||
struct _ATOM_MASTER_DATA_TABLE *master_table;
|
||||
struct _ATOM_FIRMWARE_INFO *atom_fw_info;
|
||||
u16 idx;
|
||||
|
||||
if (!ctx)
|
||||
return NULL;
|
||||
@@ -1502,16 +1502,6 @@ struct atom_context *amdgpu_atom_parse(struct card_info *card, void *bios)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
idx = CU16(ATOM_ROM_PART_NUMBER_PTR);
|
||||
if (idx == 0)
|
||||
idx = 0x80;
|
||||
|
||||
str = CSTR(idx);
|
||||
if (*str != '\0') {
|
||||
pr_info("ATOM BIOS: %s\n", str);
|
||||
strlcpy(ctx->vbios_version, str, sizeof(ctx->vbios_version));
|
||||
}
|
||||
|
||||
atom_rom_header = (struct _ATOM_ROM_HEADER *)CSTR(base);
|
||||
if (atom_rom_header->usMasterDataTableOffset != 0) {
|
||||
master_table = (struct _ATOM_MASTER_DATA_TABLE *)
|
||||
|
||||
Reference in New Issue
Block a user