[v1.06] Remove soc_ prefix from field names in system_on_chip struct

This commit is contained in:
Dr-Noob
2024-08-24 12:44:24 +01:00
parent 13605ed0ce
commit 7ad19d113c
4 changed files with 54 additions and 54 deletions

View File

@@ -35,10 +35,10 @@ enum {
};
struct system_on_chip {
SOC soc_model;
VENDOR soc_vendor;
SOC model;
VENDOR vendor;
int32_t process;
char* soc_name;
char* name;
char* raw_name;
};