KVM: arm64: Get rid of find_reg_by_id()
authorMarc Zyngier <maz@kernel.org>
Mon, 4 Jul 2022 09:03:33 +0000 (10:03 +0100)
committerMarc Zyngier <maz@kernel.org>
Sun, 17 Jul 2022 10:55:33 +0000 (11:55 +0100)
This helper doesn't have a user anymore, let's get rid of it.

Signed-off-by: Marc Zyngier <maz@kernel.org>
arch/arm64/kvm/sys_regs.c
arch/arm64/kvm/sys_regs.h

index 379478e..7ab67a7 100644 (file)
@@ -2577,17 +2577,6 @@ static bool index_to_params(u64 id, struct sys_reg_params *params)
        }
 }
 
-const struct sys_reg_desc *find_reg_by_id(u64 id,
-                                         struct sys_reg_params *params,
-                                         const struct sys_reg_desc table[],
-                                         unsigned int num)
-{
-       if (!index_to_params(id, params))
-               return NULL;
-
-       return find_reg(params, table, num);
-}
-
 const struct sys_reg_desc *get_reg_by_id(u64 id,
                                         const struct sys_reg_desc table[],
                                         unsigned int num)
index b8b576a..49517f5 100644 (file)
@@ -190,11 +190,6 @@ find_reg(const struct sys_reg_params *params, const struct sys_reg_desc table[],
        return __inline_bsearch((void *)pval, table, num, sizeof(table[0]), match_sys_reg);
 }
 
-const struct sys_reg_desc *find_reg_by_id(u64 id,
-                                         struct sys_reg_params *params,
-                                         const struct sys_reg_desc table[],
-                                         unsigned int num);
-
 const struct sys_reg_desc *get_reg_by_id(u64 id,
                                         const struct sys_reg_desc table[],
                                         unsigned int num);