diff options
author | andrew <andrew@FreeBSD.org> | 2016-02-25 20:48:23 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2016-02-25 20:48:23 +0000 |
commit | 5571950d430931b2010aa4c1a1acba1791d2d118 (patch) | |
tree | 06db8ffffc7c7c476e0a25fdd88eb13bf1180ddc /sys/arm/altera | |
parent | 5823651ad2a9baea0eec67d4f401192c75d94318 (diff) | |
download | FreeBSD-src-5571950d430931b2010aa4c1a1acba1791d2d118.zip FreeBSD-src-5571950d430931b2010aa4c1a1acba1791d2d118.tar.gz |
Remove platform_ipi_send, it's an unneeded as all implementations are
identical.
Sponsored by: ABT Systems Ltd
Diffstat (limited to 'sys/arm/altera')
-rw-r--r-- | sys/arm/altera/socfpga/socfpga_mp.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/arm/altera/socfpga/socfpga_mp.c b/sys/arm/altera/socfpga/socfpga_mp.c index e057eb3..aab689d 100644 --- a/sys/arm/altera/socfpga/socfpga_mp.c +++ b/sys/arm/altera/socfpga/socfpga_mp.c @@ -174,10 +174,3 @@ platform_mp_start_ap(void) bus_space_unmap(fdtbus_bs_tag, rst, RSTMGR_SIZE); bus_space_unmap(fdtbus_bs_tag, ram, RAM_SIZE); } - -void -platform_ipi_send(cpuset_t cpus, u_int ipi) -{ - - pic_ipi_send(cpus, ipi); -} |