git: 6f242c69b604 - stable/14 - arm/mpic: remove empty pic_init_secondary() hook
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 Sep 2024 01:47:51 UTC
The branch stable/14 has been updated by jrtc27:
URL: https://cgit.FreeBSD.org/src/commit/?id=6f242c69b6049f4c319c1948da99472a53500c3f
commit 6f242c69b6049f4c319c1948da99472a53500c3f
Author: Elliott Mitchell <ehem+freebsd@m5p.com>
AuthorDate: 2024-01-23 02:52:37 +0000
Commit: Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2024-09-06 23:52:27 +0000
arm/mpic: remove empty pic_init_secondary() hook
The default hook does nothing, so having an empty handler is pointless.
Simple cleanup.
Reviewed by: markj
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D40475
(cherry picked from commit a8b2189c90c52e43e27614b2cca6b753a70da0ca)
---
sys/arm/mv/mpic.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/sys/arm/mv/mpic.c b/sys/arm/mv/mpic.c
index 15574e409001..232eb8556948 100644
--- a/sys/arm/mv/mpic.c
+++ b/sys/arm/mv/mpic.c
@@ -149,7 +149,6 @@ static void mpic_unmask_irq_err(uintptr_t nb);
static boolean_t mpic_irq_is_percpu(uintptr_t);
static int mpic_intr(void *arg);
static void mpic_unmask_msi(void);
-void mpic_init_secondary(device_t);
void mpic_ipi_send(device_t, struct intr_irqsrc*, cpuset_t, u_int);
int mpic_ipi_read(int);
void mpic_ipi_clear(int);
@@ -384,7 +383,6 @@ static device_method_t mv_mpic_methods[] = {
DEVMETHOD(pic_post_filter, mpic_post_filter),
DEVMETHOD(pic_post_ithread, mpic_post_ithread),
DEVMETHOD(pic_pre_ithread, mpic_pre_ithread),
- DEVMETHOD(pic_init_secondary, mpic_init_secondary),
DEVMETHOD(pic_ipi_send, mpic_ipi_send),
{ 0, 0 }
};
@@ -565,11 +563,6 @@ mv_msi_data(int irq, uint64_t *addr, uint32_t *data)
return (0);
}
-void
-mpic_init_secondary(device_t dev)
-{
-}
-
void
mpic_ipi_send(device_t dev, struct intr_irqsrc *isrc, cpuset_t cpus, u_int ipi)
{