mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-25 14:25:44 +00:00
fix(versal2): add external declaration
This corrects the MISRA violation C2012-8.4: A compatible declaration shall be visible when an object or function with external linkage is defined. Change-Id: I75c8e6a23ec192417f0e09c226f53c922a43f33c Signed-off-by: Maheedhar Bollapalli <maheedharsai.bollapalli@amd.com>
This commit is contained in:
parent
16c611f8a6
commit
17a8f41e45
1 changed files with 8 additions and 0 deletions
|
@ -14,6 +14,14 @@
|
||||||
|
|
||||||
void init_scmi_server(void);
|
void init_scmi_server(void);
|
||||||
|
|
||||||
|
size_t plat_scmi_pd_count(unsigned int agent_id);
|
||||||
|
const char *plat_scmi_pd_get_name(unsigned int agent_id, unsigned int pd_id);
|
||||||
|
unsigned int plat_scmi_pd_statistics(unsigned int agent_id, unsigned long *pd_id);
|
||||||
|
unsigned int plat_scmi_pd_get_attributes(unsigned int agent_id, unsigned int pd_id);
|
||||||
|
unsigned int plat_scmi_pd_get_state(unsigned int agent_id, unsigned int pd_id);
|
||||||
|
int32_t plat_scmi_pd_set_state(unsigned int agent_id, unsigned int flags, unsigned int pd_id,
|
||||||
|
unsigned int state);
|
||||||
|
|
||||||
#define SCMI_VENDOR "AMD"
|
#define SCMI_VENDOR "AMD"
|
||||||
#define SCMI_PRODUCT "Versal Gen 2"
|
#define SCMI_PRODUCT "Versal Gen 2"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue