svn commit: r329915 - head/sys/powerpc/powerpc

Justin Hibbits jhibbits at FreeBSD.org
Sat Feb 24 17:29:30 UTC 2018


Author: jhibbits
Date: Sat Feb 24 17:29:29 2018
New Revision: 329915
URL: https://svnweb.freebsd.org/changeset/base/329915

Log:
  Unbreak the build after r329891
  
  I was apparently a little too excited with deleting code, and apparently
  didn't do a final test build before commit.  Restore cpu_idle_wakeup().

Modified:
  head/sys/powerpc/powerpc/cpu.c

Modified: head/sys/powerpc/powerpc/cpu.c
==============================================================================
--- head/sys/powerpc/powerpc/cpu.c	Sat Feb 24 17:13:15 2018	(r329914)
+++ head/sys/powerpc/powerpc/cpu.c	Sat Feb 24 17:29:29 2018	(r329915)
@@ -768,3 +768,10 @@ cpu_idle_powerx(sbintime_t sbt)
 	spinlock_exit();
 }
 #endif
+
+int
+cpu_idle_wakeup(int cpu)
+{
+
+	return (0);
+}


More information about the svn-src-head mailing list