aboutsummaryrefslogtreecommitdiff
path: root/hw/s390x/ap-stub.c
blob: 001fe5f8b015e05e6e06a9c3797d54d6718f7716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * VFIO based AP matrix device assignment
 *
 * Copyright 2025 IBM Corp.
 * Author(s): Rorie Reyes <rreyes@linux.ibm.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "qemu/osdep.h"
#include "hw/s390x/ap-bridge.h"

int ap_chsc_sei_nt0_get_event(void *res)
{
    return EVENT_INFORMATION_NOT_STORED;
}

bool ap_chsc_sei_nt0_have_event(void)
{
    return false;
}