[PATCH umr 10/17] gui/info_panel: correctly identify the GFX11 family

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Signed-off-by: Nicolai Hähnle <nicolai.haehnle@xxxxxxx>
---
 src/app/gui/info_panel.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/gui/info_panel.cpp b/src/app/gui/info_panel.cpp
index d9c3421..bca7137 100644
--- a/src/app/gui/info_panel.cpp
+++ b/src/app/gui/info_panel.cpp
@@ -25,21 +25,21 @@
 #include "panels.h"
 
 class InfoPanel : public Panel {
 public:
 	InfoPanel(struct umr_asic *asic) : Panel(asic) { }
 
 	void process_server_message(JSON_Object *response, void *raw_data, unsigned raw_data_size) {	}
 
 	bool display(float dt, const ImVec2& avail, bool can_send_request) {
 		static const char *families[] = {
-			"SI", "CIK", "VI", "AI", "NV", "NPI", "CFG",
+			"SI", "CIK", "VI", "AI", "NV", "GFX11", "NPI", "CFG",
 		};
 
 		ImGui::BeginChild("Info", ImVec2(avail.x / 2, 0), false, ImGuiWindowFlags_NoTitleBar);
 		ImGui::BeginTable("Info", 2, ImGuiTableFlags_Borders);
 		ImGui::TableNextRow();
 		ImGui::TableSetColumnIndex(0); ImGui::Text("ASIC name");
 		ImGui::TableSetColumnIndex(1); ImGui::Text("#b58900%s", asic->asicname);
 		ImGui::TableNextRow();
 		ImGui::TableSetColumnIndex(0); ImGui::Text("Instance");
 		ImGui::TableSetColumnIndex(1); ImGui::Text("#b58900%d", asic->instance);
-- 
2.40.0




[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux