Change the name of jailhouse_fw_name() to the clearer jailhouse_get_fw_name().
Signed-off-by: Claudio Scordino <[email protected]> --- driver/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/driver/main.c b/driver/main.c index e3d58bc..2ab9a4c 100644 --- a/driver/main.c +++ b/driver/main.c @@ -169,7 +169,7 @@ static void enter_hypervisor(void *info) atomic_inc(&call_done); } -static inline const char * jailhouse_fw_name(void) +static inline const char * jailhouse_get_fw_name(void) { #ifdef CONFIG_X86 if (boot_cpu_has(X86_FEATURE_SVM)) @@ -204,7 +204,7 @@ static int jailhouse_cmd_enable(struct jailhouse_system __user *arg) } #endif - fw_name = jailhouse_fw_name(); + fw_name = jailhouse_get_fw_name(); if (!fw_name) { pr_err("jailhouse: Missing or unsupported HVM technology\n"); return -ENODEV; -- 2.7.4 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
