Fix incorrect service name in SOC_U::GetService (#7261)

This commit is contained in:
PabloMK7 2023-12-19 17:04:28 +01:00 committed by GitHub
parent 02ba5c652b
commit a47d8a7b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2314,7 +2314,7 @@ std::optional<SOC_U::InterfaceInfo> SOC_U::GetDefaultInterfaceInfo() {
}
std::shared_ptr<SOC_U> GetService(Core::System& system) {
return system.ServiceManager().GetService<SOC_U>("cfg:u");
return system.ServiceManager().GetService<SOC_U>("soc:U");
}
void InstallInterfaces(Core::System& system) {