diff options
Diffstat (limited to 'plat/fvp/fvp_pm.c')
-rw-r--r-- | plat/fvp/fvp_pm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plat/fvp/fvp_pm.c b/plat/fvp/fvp_pm.c index c15d845d..3737ecff 100644 --- a/plat/fvp/fvp_pm.c +++ b/plat/fvp/fvp_pm.c @@ -32,7 +32,7 @@ #include <arm_gic.h> #include <assert.h> #include <bakery_lock.h> -#include <cci400.h> +#include <cci.h> #include <debug.h> #include <mmio.h> #include <platform.h> @@ -82,8 +82,7 @@ static void fvp_cluster_pwrdwn_common(void) uint64_t mpidr = read_mpidr_el1(); /* Disable coherency if this cluster is to be turned off */ - if (get_plat_config()->flags & CONFIG_HAS_CCI) - cci_disable_cluster_coherency(mpidr); + fvp_cci_disable(); /* Program the power controller to turn the cluster off */ fvp_pwrc_write_pcoffr(mpidr); |