Loading drivers/gpu/drm/nouveau/core/include/subdev/bios.h +1 −0 Original line number Diff line number Diff line Loading @@ -17,6 +17,7 @@ struct nouveau_bios { u8 chip; u8 minor; u8 micro; u8 patch; } version; }; Loading drivers/gpu/drm/nouveau/core/subdev/bios/base.c +3 −2 Original line number Diff line number Diff line Loading @@ -447,6 +447,7 @@ nouveau_bios_ctor(struct nouveau_object *parent, bios->version.chip = nv_ro08(bios, bit_i.offset + 2); bios->version.minor = nv_ro08(bios, bit_i.offset + 1); bios->version.micro = nv_ro08(bios, bit_i.offset + 0); bios->version.patch = nv_ro08(bios, bit_i.offset + 4); } else if (bmp_version(bios)) { bios->version.major = nv_ro08(bios, bios->bmp_offset + 13); Loading @@ -455,9 +456,9 @@ nouveau_bios_ctor(struct nouveau_object *parent, bios->version.micro = nv_ro08(bios, bios->bmp_offset + 10); } nv_info(bios, "version %02x.%02x.%02x.%02x\n", nv_info(bios, "version %02x.%02x.%02x.%02x.%02x\n", bios->version.major, bios->version.chip, bios->version.minor, bios->version.micro); bios->version.minor, bios->version.micro, bios->version.patch); return 0; } Loading Loading
drivers/gpu/drm/nouveau/core/include/subdev/bios.h +1 −0 Original line number Diff line number Diff line Loading @@ -17,6 +17,7 @@ struct nouveau_bios { u8 chip; u8 minor; u8 micro; u8 patch; } version; }; Loading
drivers/gpu/drm/nouveau/core/subdev/bios/base.c +3 −2 Original line number Diff line number Diff line Loading @@ -447,6 +447,7 @@ nouveau_bios_ctor(struct nouveau_object *parent, bios->version.chip = nv_ro08(bios, bit_i.offset + 2); bios->version.minor = nv_ro08(bios, bit_i.offset + 1); bios->version.micro = nv_ro08(bios, bit_i.offset + 0); bios->version.patch = nv_ro08(bios, bit_i.offset + 4); } else if (bmp_version(bios)) { bios->version.major = nv_ro08(bios, bios->bmp_offset + 13); Loading @@ -455,9 +456,9 @@ nouveau_bios_ctor(struct nouveau_object *parent, bios->version.micro = nv_ro08(bios, bios->bmp_offset + 10); } nv_info(bios, "version %02x.%02x.%02x.%02x\n", nv_info(bios, "version %02x.%02x.%02x.%02x.%02x\n", bios->version.major, bios->version.chip, bios->version.minor, bios->version.micro); bios->version.minor, bios->version.micro, bios->version.patch); return 0; } Loading