summaryrefslogtreecommitdiff
path: root/include/sbi/sbi_scratch.h
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2020-03-14 11:50:22 +0300
committerAnup Patel <anup@brainfault.org>2020-03-19 06:34:29 +0300
commite23d3ba936698c52c83bbeed8d844fea22ae0859 (patch)
tree8f0709f322cf42f04f5eab85f20bb240133aa519 /include/sbi/sbi_scratch.h
parent87a7ef7659e27cdd5ef9a639cd68cf628be3d2d3 (diff)
downloadopensbi-e23d3ba936698c52c83bbeed8d844fea22ae0859.tar.xz
include: Simplify HART id to scratch macro
This patch simplify HART id to scratch macro as follows: 1. Remove current "scratch" pointer argument because now we use HART id to scratch table 2. Rename sbi_hart_id_to_scratch() to sbi_hartid_to_scratch() to have macro name consistent with the name of callback in struct sbi_scratch Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'include/sbi/sbi_scratch.h')
-rw-r--r--include/sbi/sbi_scratch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sbi/sbi_scratch.h b/include/sbi/sbi_scratch.h
index ec47caf..e848900 100644
--- a/include/sbi/sbi_scratch.h
+++ b/include/sbi/sbi_scratch.h
@@ -110,7 +110,7 @@ void sbi_scratch_free_offset(unsigned long offset);
extern struct sbi_scratch *hartid_to_scratch_table[];
/** Get sbi_scratch from HART id */
-#define sbi_hart_id_to_scratch(__scratch, __hartid) \
+#define sbi_hartid_to_scratch(__hartid) \
hartid_to_scratch_table[__hartid]
#endif