mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 16:00:39 +01:00
[v0.90][ARM] Add most of Qualcomm SoCs
This commit is contained in:
@@ -1,10 +1,21 @@
|
||||
#ifndef __SOC__
|
||||
#define __SOC__
|
||||
|
||||
typedef int SOC;
|
||||
#include <stdint.h>
|
||||
|
||||
typedef int32_t SOC;
|
||||
|
||||
enum {
|
||||
SOC_UNKNOWN,
|
||||
SOC_SNAPDRAGON,
|
||||
SOC_MEDIATEK,
|
||||
SOC_EXYNOS,
|
||||
};
|
||||
|
||||
struct system_on_chip {
|
||||
SOC soc;
|
||||
SOC soc_vendor;
|
||||
int32_t process;
|
||||
char* soc_name;
|
||||
char* raw_name;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user