mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-14 19:27:06 +00:00
4b4ae3ab90
Signed-off-by: Hector Martin <marcan@marcan.st>
13 lines
175 B
C
13 lines
175 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef AIC_H
|
|
#define AIC_H
|
|
|
|
#include "types.h"
|
|
|
|
extern u64 aic_base;
|
|
|
|
void aic_init(void);
|
|
void aic_set_sw(int irq, bool active);
|
|
|
|
#endif
|