forked from Imagelibrary/rtems
bsps/arm: Remove superfluous parameter
This commit is contained in:
@@ -18,8 +18,7 @@
|
|||||||
|
|
||||||
void arm_cp15_set_exception_handler(
|
void arm_cp15_set_exception_handler(
|
||||||
Arm_symbolic_exception_name exception,
|
Arm_symbolic_exception_name exception,
|
||||||
void (*handler)(void),
|
void (*handler)(void)
|
||||||
uint32_t section_flags_for_mirror_table_access
|
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if ((unsigned) exception < MAX_EXCEPTIONS) {
|
if ((unsigned) exception < MAX_EXCEPTIONS) {
|
||||||
|
|||||||
@@ -109,8 +109,7 @@ rtems_status_code bsp_interrupt_facility_initialize(void)
|
|||||||
|
|
||||||
arm_cp15_set_exception_handler(
|
arm_cp15_set_exception_handler(
|
||||||
ARM_EXCEPTION_IRQ,
|
ARM_EXCEPTION_IRQ,
|
||||||
_ARMV4_Exception_interrupt,
|
_ARMV4_Exception_interrupt
|
||||||
BSP_ARM_MMU_READ_WRITE
|
|
||||||
);
|
);
|
||||||
|
|
||||||
return RTEMS_SUCCESSFUL;
|
return RTEMS_SUCCESSFUL;
|
||||||
|
|||||||
@@ -812,8 +812,7 @@ uint32_t arm_cp15_set_translation_table_entries(
|
|||||||
|
|
||||||
void arm_cp15_set_exception_handler(
|
void arm_cp15_set_exception_handler(
|
||||||
Arm_symbolic_exception_name exception,
|
Arm_symbolic_exception_name exception,
|
||||||
void (*handler)(void),
|
void (*handler)(void)
|
||||||
uint32_t section_flags_for_mirror_table_access
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|||||||
Reference in New Issue
Block a user