diff options
Diffstat (limited to 'include/sbi/sbi_platform.h')
-rw-r--r-- | include/sbi/sbi_platform.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/sbi/sbi_platform.h b/include/sbi/sbi_platform.h index 34cd732..97195c4 100644 --- a/include/sbi/sbi_platform.h +++ b/include/sbi/sbi_platform.h @@ -90,8 +90,6 @@ struct sbi_platform_operations { /** Send IPI to a target HART */ void (*ipi_send)(u32 target_hart); - /** Wait for target HART to acknowledge IPI */ - void (*ipi_sync)(u32 target_hart); /** Clear IPI for a target HART */ void (*ipi_clear)(u32 target_hart); /** Initialize IPI for current HART */ @@ -371,19 +369,6 @@ static inline void sbi_platform_ipi_send(const struct sbi_platform *plat, } /** - * Wait for target HART to acknowledge IPI - * - * @param plat pointer to struct sbi_platform - * @param target_hart HART ID of IPI target - */ -static inline void sbi_platform_ipi_sync(const struct sbi_platform *plat, - u32 target_hart) -{ - if (plat && sbi_platform_ops(plat)->ipi_sync) - sbi_platform_ops(plat)->ipi_sync(target_hart); -} - -/** * Clear IPI for a target HART * * @param plat pointer to struct sbi_platform |