blob: 4d2585b9514de9767e0dca48ed7bb01936d89d96 [file] [log] [blame]
Madhukar Pappireddy2185d0b2021-08-03 12:12:48 -05001/*
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
14void plat_interrupts_set_priority_mask(uint8_t min_priority)
15{
16 (void)min_priority;
17}
18
19void plat_interrupts_controller_hw_init(struct cpu *c)
20{
21 (void)c;
22}