blob: 58f9ef45e39d13c09bd54eb37582c07f5b81544f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#ifndef KMI_ARCH_TYPES_H
#define KMI_ARCH_TYPES_H
/**
* @file types.h
* Arch-specific types.
*
* Doxygen thinks types.h if include/kmi/types.h, but it's actually
* arch/whatever/include/types.h. Not sure how to fix that.
*
* \todo Fix incorrect include file reference in doxygen.
*/
#if defined(riscv64)
#include "../../arch/riscv64/include/types.h"
#elif defined(riscv32)
#include "../../arch/riscv32/include/types.h"
#endif
#endif /* KMI_ARCH_TYPES_H */
|