Realign enums that had UnsupportedFeature to start at 0

This commit is contained in:
Vicki Pfau 2024-04-01 21:10:38 -07:00
parent c37bd22db0
commit 35e520712d
5 changed files with 24 additions and 24 deletions

View file

@ -36,8 +36,8 @@ enum PrepareFactoryReset {
#[derive(PartialEq, Debug, Copy, Clone)]
#[repr(u32)]
enum FanControl {
BIOS = 1,
OS = 2,
BIOS = 0,
OS = 1,
}
impl TryFrom<u32> for FanControl {