mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 12:34:19 +00:00

No functional changes. Change-Id: I2f28f20944f552447ac4e9e755493cd7c0ea1192 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
15 lines
262 B
C
15 lines
262 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MPAM_H
|
|
#define MPAM_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool mpam_supported(void);
|
|
void mpam_enable(bool el2_unused);
|
|
|
|
#endif /* MPAM_H */
|