Madhukar Pappireddy | 2185d0b | 2021-08-03 12:12:48 -0500 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2021 The Hafnium Authors. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style |
| 5 | * license that can be found in the LICENSE file or at |
| 6 | * https://opensource.org/licenses/BSD-3-Clause. |
| 7 | */ |
| 8 | |
| 9 | #include "hf/plat/interrupts.h" |
| 10 | |
| 11 | #include "hf/cpu.h" |
| 12 | #include "hf/ffa.h" |
| 13 | |
| 14 | void plat_interrupts_set_priority_mask(uint8_t min_priority) |
| 15 | { |
| 16 | (void)min_priority; |
| 17 | } |
| 18 | |
| 19 | void plat_interrupts_controller_hw_init(struct cpu *c) |
| 20 | { |
| 21 | (void)c; |
| 22 | } |