mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-15 00:47:02 +02:00
MISRA Violation: MISRA-C:2012 R.8.13 - The pointer variable points to a non-constant type but does not modify the object it points to. Consider adding const qualifier to the points-to type. Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@xilinx.com> Change-Id: I74e1b69290e081645bec8bb380128936190b5e24
19 lines
445 B
C
19 lines
445 B
C
/*
|
|
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PM_SVC_MAIN_H
|
|
#define PM_SVC_MAIN_H
|
|
|
|
#include <pm_common.h>
|
|
|
|
int32_t pm_setup(void);
|
|
uint64_t pm_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
|
|
uint64_t x4, const void *cookie, void *handle,
|
|
uint64_t flags);
|
|
|
|
int32_t pm_register_sgi(uint32_t sgi_num, uint32_t reset);
|
|
#endif /* PM_SVC_MAIN_H */
|