mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00

Whilst here take the oportunity to shorten the function name. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Ben Widawsky <ben@bwidawsk.net> Message-Id: <20220608145440.26106-4-Jonathan.Cameron@huawei.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
22 lines
457 B
C
22 lines
457 B
C
/*
|
|
* QEMU CXL Host Setup
|
|
*
|
|
* Copyright (c) 2022 Huawei
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See the
|
|
* COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/cxl/cxl.h"
|
|
#include "hw/boards.h"
|
|
|
|
#ifndef CXL_HOST_H
|
|
#define CXL_HOST_H
|
|
|
|
void cxl_machine_init(Object *obj, CXLState *state);
|
|
void cxl_fmws_link_targets(CXLState *stat, Error **errp);
|
|
|
|
extern const MemoryRegionOps cfmws_ops;
|
|
|
|
#endif
|