From cab1f40a9b223d5ddc2236a25dce9b834a64390a Mon Sep 17 00:00:00 2001 From: Aboorva Devarajan Date: Thu, 5 Oct 2023 20:23:15 +0530 Subject: [PATCH] tools/ppchcalls: fix incorrect hypercall name Hypercall name 'H_DISABLE_AND_GETC' is incorrect. In this commit, it has been corrected to 'H_DISABLE_AND_GET' to align with this linux kernel commit 0f10228c6ff6 ("KVM: PPC: Fix typo on H_DISABLE_AND_GET hcall") Signed-off-by: Aboorva Devarajan --- tools/ppchcalls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ppchcalls.py b/tools/ppchcalls.py index aedefb9efcfe..b6ca88260653 100755 --- a/tools/ppchcalls.py +++ b/tools/ppchcalls.py @@ -94,7 +94,7 @@ 420: 'H_CREATE_RPT', 424: 'H_REMOVE_RPT', 428: 'H_REGISTER_RPAGES', - 432: 'H_DISABLE_AND_GETC', + 432: 'H_DISABLE_AND_GET', 436: 'H_ERROR_DATA', 440: 'H_GET_HCA_INFO', 444: 'H_GET_PERF_COUNT',