From 60c0df032d99e1a24029348e27a7c7e9a59e52e6 Mon Sep 17 00:00:00 2001 From: "Kate J. Temkin" Date: Sun, 8 Apr 2018 19:13:23 -0600 Subject: [PATCH] fusee: update header names for starting cpu0 --- fusee/fusee-primary/src/hwinit.h | 2 +- fusee/fusee-primary/src/hwinit/cluster.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fusee/fusee-primary/src/hwinit.h b/fusee/fusee-primary/src/hwinit.h index 7c196bd27..ce0e50663 100644 --- a/fusee/fusee-primary/src/hwinit.h +++ b/fusee/fusee-primary/src/hwinit.h @@ -33,6 +33,6 @@ u32 *display_init_framebuffer(); /*! Enable or disable the backlight. Should only be called when the screen is completely set up, to avoid flickering. */ void display_enable_backlight(bool on); -void cluster_boot_cpu0(u64 entry, u32 ns_disable); +void cluster_enable_cpu0(u64 entry, u32 ns_disable); #endif diff --git a/fusee/fusee-primary/src/hwinit/cluster.h b/fusee/fusee-primary/src/hwinit/cluster.h index 2a2d7e18c..41ae68f52 100644 --- a/fusee/fusee-primary/src/hwinit/cluster.h +++ b/fusee/fusee-primary/src/hwinit/cluster.h @@ -7,6 +7,6 @@ #define FLOW_CTLR_RAM_REPAIR 0x40 #define FLOW_CTLR_BPMP_CLUSTER_CONTROL 0x98 -void cluster_boot_cpu0(u64 entry, u32 ns_disable); +void cluster_enable_cpu0(u64 entry, u32 ns_disable); #endif