sysclk: fix typo
This commit is contained in:
@@ -40,13 +40,13 @@ typedef enum
|
|||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
HorizonOCConsoleType_Unknown = 0,
|
HorizonOCConsoleType_Unknown = 0, ///< Invalid Model
|
||||||
HorizonOCConsoleType_V1,
|
HorizonOCConsoleType_V1 = 1, ///< Erista Model
|
||||||
HorizonOCConsoleType_UnreleasedErista,
|
HorizonOCConsoleType_UnreleasedErista = 2, ///< Erista "Simulation" Model
|
||||||
HorizonOCConsoleType_V2,
|
HorizonOCConsoleType_V2 = 3, ///< Mariko Model
|
||||||
HorizonOCConsoleType_Lite,
|
HorizonOCConsoleType_Lite = 4, ///< Mariko Lite Model
|
||||||
HorizonOCConsoleType_UnreleasedMariko,
|
HorizonOCConsoleType_UnreleasedMariko = 5, ///< Mariko "Simulation" Model
|
||||||
HorizonOCConsoleType_OLED,
|
HorizonOCConsoleType_OLED = 6, ///< Mariko OLED Model
|
||||||
HorizonOCConsoleType_EnumMax,
|
HorizonOCConsoleType_EnumMax,
|
||||||
} HorizonOCConsoleType;
|
} HorizonOCConsoleType;
|
||||||
|
|
||||||
@@ -216,7 +216,7 @@ static inline const char* hocClkFormatVoltage(HocClkVoltage voltage, bool pretty
|
|||||||
case HocClkVoltage_SOC:
|
case HocClkVoltage_SOC:
|
||||||
return pretty ? "SOC" : "soc";
|
return pretty ? "SOC" : "soc";
|
||||||
case HocClkVoltage_Display:
|
case HocClkVoltage_Display:
|
||||||
return pretty ? "SOC" : "soc";
|
return pretty ? "Display" : "display";
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user