d90b1e4236
This commit was created with scripts/clean-includes. All .c should include qemu/osdep.h first. The script performs three related cleanups: * Ensure .c files include qemu/osdep.h first. * Including it in a .h is redundant, since the .c already includes it. Drop such inclusions. * Likewise, including headers qemu/osdep.h includes is redundant. Drop these, too. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20230202133830.2152150-8-armbru@redhat.com> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
23 lines
509 B
C
23 lines
509 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 "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);
|
|
void cxl_hook_up_pxb_registers(PCIBus *bus, CXLState *state, Error **errp);
|
|
|
|
extern const MemoryRegionOps cfmws_ops;
|
|
|
|
#endif
|