[Kernel/Video] Removed unknown fields from X_VIDEO_MODE structure

- Additionally changed some messages level to more reasonable one
This commit is contained in:
Gliniak
2025-05-05 21:30:22 +02:00
parent 9434cc89c9
commit c15dde52d6
4 changed files with 7 additions and 7 deletions

View File

@@ -384,12 +384,12 @@ std::vector<uint64_t> ProfileManager::FindProfiles() const {
continue;
}
XELOGE("{}: Adding profile {} to profile list", __func__, profile_xuid);
XELOGI("{}: Adding profile {} to profile list", __func__, profile_xuid);
profiles_xuids.push_back(
xe::string_util::from_string<uint64_t>(profile_xuid, true));
}
XELOGE("ProfileManager: Found {} Profiles", profiles_xuids.size());
XELOGI("ProfileManager: Found {} Profiles", profiles_xuids.size());
return profiles_xuids;
}