blob: 00849a2e694a016028561c4ba4d81eff7a57b555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SPM_HOTPLUG_H
#define SPM_HOTPLUG_H
void spm_clear_hotplug(void);
void spm_hotplug_off(unsigned long mpidr);
void spm_hotplug_on(unsigned long mpidr);
#endif /* SPM_HOTPLUG_H */
|