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

Changes all occurrences of "RSS" and "rss" in the code and build files to "RSE" and "rse". Signed-off-by: Tamas Ban <tamas.ban@arm.com> Change-Id: I9f72ad36ec233d7eaac3ce9e2f2b010130e1fa94
15 lines
276 B
C
15 lines
276 B
C
/*
|
|
* Copyright (c) 2022, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef RSE_COMMS_H
|
|
#define RSE_COMMS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int rse_comms_init(uintptr_t mhu_sender_base, uintptr_t mhu_receiver_base);
|
|
|
|
#endif /* RSE_COMMS_H */
|