Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plat/qemu/qemu_sbsa/sbsa_sip_svc.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ uintptr_t sbsa_sip_smc_handler(uint32_t smc_fid,
SMC_RET1(handle, SMC_ARCH_CALL_INVAL_PARAM);
}

case SIP_SVC_GET_CPU_TOPOLOGY:
case SIP_SVC_GET_CPU_TOPOLOGY: {
struct platform_cpu_topology topology;

topology = sbsa_platform_cpu_topology();
Expand All @@ -95,6 +95,7 @@ uintptr_t sbsa_sip_smc_handler(uint32_t smc_fid,
/* we do not know topology so we report SMC as unknown */
SMC_RET1(handle, SMC_UNK);
}
}

case SIP_SVC_GET_MEMORY_NODE_COUNT:
SMC_RET2(handle, NULL, sbsa_platform_num_memnodes());
Expand Down