diff options
author | Anup Patel <anup.patel@wdc.com> | 2021-05-20 14:43:06 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2021-06-24 09:39:51 +0530 |
commit | 56fc5f7618b70a83425a764cafd67ffcf3605b5d (patch) | |
tree | 087f378448a33a1728a68c4546f1fa78e9df3c3f /lib/utils/ipi/fdt_ipi.c | |
parent | bd5d2089b80742a210b257c8e6c1361310725200 (diff) |
lib: utils/ipi: Add FDT based ACLINT MSWI IPI driver
We add a new FDT based ACLINT MSWI IPI driver which works for both
CLINT device and standalone ACLINT MSWI device.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Xiang W <wxjstz@126.com>
Diffstat (limited to 'lib/utils/ipi/fdt_ipi.c')
-rw-r--r-- | lib/utils/ipi/fdt_ipi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils/ipi/fdt_ipi.c b/lib/utils/ipi/fdt_ipi.c index 3932f50..ed56e49 100644 --- a/lib/utils/ipi/fdt_ipi.c +++ b/lib/utils/ipi/fdt_ipi.c @@ -12,10 +12,10 @@ #include <sbi_utils/fdt/fdt_helper.h> #include <sbi_utils/ipi/fdt_ipi.h> -extern struct fdt_ipi fdt_ipi_clint; +extern struct fdt_ipi fdt_ipi_mswi; static struct fdt_ipi *ipi_drivers[] = { - &fdt_ipi_clint + &fdt_ipi_mswi }; static struct fdt_ipi dummy = { |