mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2025-03-05 17:07:05 +00:00
Migrate __warn_deprecated -> __deprecated
Use the new __deprecated macro from the generic cdefs header and remove the deprecated __warn_deprecated. Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
This commit is contained in:
parent
70050dd10c
commit
70ecb564fd
@ -33,7 +33,6 @@
|
||||
|
||||
#include <arch.h>
|
||||
#include <bl_common.h>
|
||||
#include <common_def.h>
|
||||
|
||||
/*******************************************************************************
|
||||
* Forward declarations
|
||||
@ -45,10 +44,10 @@ struct entry_point_info;
|
||||
******************************************************************************/
|
||||
void cm_init(void);
|
||||
void *cm_get_context_by_mpidr(uint64_t mpidr,
|
||||
uint32_t security_state) __warn_deprecated;
|
||||
uint32_t security_state) __deprecated;
|
||||
void cm_set_context_by_mpidr(uint64_t mpidr,
|
||||
void *context,
|
||||
uint32_t security_state) __warn_deprecated;
|
||||
uint32_t security_state) __deprecated;
|
||||
void *cm_get_context_by_index(unsigned int cpu_idx,
|
||||
unsigned int security_state);
|
||||
void cm_set_context_by_index(unsigned int cpu_idx,
|
||||
@ -58,7 +57,7 @@ void *cm_get_context(uint32_t security_state);
|
||||
void cm_set_context(void *context, uint32_t security_state);
|
||||
inline void cm_set_next_context(void *context);
|
||||
void cm_init_context(uint64_t mpidr,
|
||||
const struct entry_point_info *ep) __warn_deprecated;
|
||||
const struct entry_point_info *ep) __deprecated;
|
||||
void cm_init_my_context(const struct entry_point_info *ep);
|
||||
void cm_init_context_by_index(unsigned int cpu_idx,
|
||||
const struct entry_point_info *ep);
|
||||
|
@ -31,7 +31,6 @@
|
||||
#ifndef __ARM_GIC_H__
|
||||
#define __ARM_GIC_H__
|
||||
|
||||
#include <common_def.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/*******************************************************************************
|
||||
@ -41,18 +40,18 @@ void arm_gic_init(uintptr_t gicc_base,
|
||||
uintptr_t gicd_base,
|
||||
uintptr_t gicr_base,
|
||||
const unsigned int *irq_sec_ptr,
|
||||
unsigned int num_irqs) __warn_deprecated;
|
||||
void arm_gic_setup(void) __warn_deprecated;
|
||||
void arm_gic_cpuif_deactivate(void) __warn_deprecated;
|
||||
void arm_gic_cpuif_setup(void) __warn_deprecated;
|
||||
void arm_gic_pcpu_distif_setup(void) __warn_deprecated;
|
||||
unsigned int num_irqs) __deprecated;
|
||||
void arm_gic_setup(void) __deprecated;
|
||||
void arm_gic_cpuif_deactivate(void) __deprecated;
|
||||
void arm_gic_cpuif_setup(void) __deprecated;
|
||||
void arm_gic_pcpu_distif_setup(void) __deprecated;
|
||||
|
||||
uint32_t arm_gic_interrupt_type_to_line(uint32_t type,
|
||||
uint32_t security_state) __warn_deprecated;
|
||||
uint32_t arm_gic_get_pending_interrupt_type(void) __warn_deprecated;
|
||||
uint32_t arm_gic_get_pending_interrupt_id(void) __warn_deprecated;
|
||||
uint32_t arm_gic_acknowledge_interrupt(void) __warn_deprecated;
|
||||
void arm_gic_end_of_interrupt(uint32_t id) __warn_deprecated;
|
||||
uint32_t arm_gic_get_interrupt_type(uint32_t id) __warn_deprecated;
|
||||
uint32_t security_state) __deprecated;
|
||||
uint32_t arm_gic_get_pending_interrupt_type(void) __deprecated;
|
||||
uint32_t arm_gic_get_pending_interrupt_id(void) __deprecated;
|
||||
uint32_t arm_gic_acknowledge_interrupt(void) __deprecated;
|
||||
void arm_gic_end_of_interrupt(uint32_t id) __deprecated;
|
||||
uint32_t arm_gic_get_interrupt_type(uint32_t id) __deprecated;
|
||||
|
||||
#endif /* __GIC_H__ */
|
||||
|
@ -76,7 +76,6 @@
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
|
||||
#include <common_def.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/* Function declarations */
|
||||
@ -92,10 +91,10 @@
|
||||
*/
|
||||
void cci_init(uintptr_t cci_base,
|
||||
int slave_iface3_cluster_ix,
|
||||
int slave_iface4_cluster_ix) __warn_deprecated;
|
||||
int slave_iface4_cluster_ix) __deprecated;
|
||||
|
||||
void cci_enable_cluster_coherency(unsigned long mpidr) __warn_deprecated;
|
||||
void cci_disable_cluster_coherency(unsigned long mpidr) __warn_deprecated;
|
||||
void cci_enable_cluster_coherency(unsigned long mpidr) __deprecated;
|
||||
void cci_disable_cluster_coherency(unsigned long mpidr) __deprecated;
|
||||
|
||||
#endif /* __ASSEMBLY__ */
|
||||
#endif /* __CCI_400_H__ */
|
||||
|
@ -70,13 +70,6 @@
|
||||
#define MAKE_ULL(x) x
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Macros to wrap declarations of deprecated APIs within Trusted Firmware.
|
||||
* The callers of these APIs will continue to compile with a warning as long
|
||||
* as the build flag ERROR_DEPRECATED is zero.
|
||||
*/
|
||||
#define __warn_deprecated __attribute__ ((deprecated))
|
||||
|
||||
#define BL2_IMAGE_DESC { \
|
||||
.image_id = BL2_IMAGE_ID, \
|
||||
.image_info.h.version = VERSION_1, \
|
||||
|
@ -273,7 +273,7 @@ unsigned int plat_get_aff_state(unsigned int, unsigned long);
|
||||
* haven't migrated to the new platform API to compile on platforms which
|
||||
* have the compatibility layer disabled.
|
||||
*/
|
||||
unsigned int platform_get_core_pos(unsigned long mpidr) __warn_deprecated;
|
||||
unsigned int platform_get_core_pos(unsigned long mpidr) __deprecated;
|
||||
|
||||
#endif /* __ENABLE_PLAT_COMPAT__ */
|
||||
#endif /* __PLATFORM_H__ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user