Merge tag 'io_uring-5.13-2021-05-22' of git://git.kernel.dk/linux-block
[linux-2.6-microblaze.git] / arch / arm64 / kvm / hyp / nvhe / stub.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Stubs for out-of-line function calls caused by re-using kernel
4  * infrastructure at EL2.
5  *
6  * Copyright (C) 2020 - Google LLC
7  */
8
9 #include <linux/list.h>
10
11 #ifdef CONFIG_DEBUG_LIST
12 bool __list_add_valid(struct list_head *new, struct list_head *prev,
13                       struct list_head *next)
14 {
15                 return true;
16 }
17
18 bool __list_del_entry_valid(struct list_head *entry)
19 {
20                 return true;
21 }
22 #endif