mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-26 23:04:50 +00:00

This patch fixes the violations of Rule 21.1 from all the Tegra common header files. Rule 21.1 "#define and #undef shall not be used on a reserved identifier or reserved macro name" Signed-off-by: Varun Wadekar <vwadekar@nvidia.com> Change-Id: I2e117645c110e04c13fa86ebbbb38df4951d2185
17 lines
426 B
C
17 lines
426 B
C
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
* Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef GPCDMA_H
|
|
#define GPCDMA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void tegra_gpcdma_memcpy(uint64_t dst_addr, uint64_t src_addr,
|
|
uint32_t num_bytes);
|
|
void tegra_gpcdma_zeromem(uint64_t dst_addr, uint32_t num_bytes);
|
|
|
|
#endif /* GPCDMA_H */
|