Browse Source
The file arm_ras.c intended to provide common platform-specific RAS configuration for Arm platforms. Because this file has symbol definitions, it's proving difficult to provide a common definition. This patch therefore renames and makes the file specific to FVP. Other platforms shall provide their own configuration in similar fashion. Change-Id: I766fd238946e3e49cdb659680e1b45f41b237901 Signed-off-by: Jeenu Viswambharan <jeenu.viswambharan@arm.com>pull/1437/head
Jeenu Viswambharan
7 years ago
4 changed files with 21 additions and 18 deletions
@ -0,0 +1,16 @@ |
|||
/*
|
|||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
|||
* |
|||
* SPDX-License-Identifier: BSD-3-Clause |
|||
*/ |
|||
|
|||
#include <ras.h> |
|||
|
|||
struct ras_interrupt fvp_ras_interrupts[] = { |
|||
}; |
|||
|
|||
struct err_record_info fvp_err_records[] = { |
|||
}; |
|||
|
|||
REGISTER_ERR_RECORD_INFO(fvp_err_records); |
|||
REGISTER_RAS_INTERRUPTS(fvp_ras_interrupts); |
@ -1,16 +0,0 @@ |
|||
/*
|
|||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
|||
* |
|||
* SPDX-License-Identifier: BSD-3-Clause |
|||
*/ |
|||
|
|||
#include <ras.h> |
|||
|
|||
struct ras_interrupt arm_ras_interrupts[] = { |
|||
}; |
|||
|
|||
struct err_record_info arm_err_records[] = { |
|||
}; |
|||
|
|||
REGISTER_ERR_RECORD_INFO(arm_err_records); |
|||
REGISTER_RAS_INTERRUPTS(arm_ras_interrupts); |
Loading…
Reference in new issue