xref: /openbmc/qemu/migration/multifd-qpl.c (revision 354cac28)
1 /*
2  * Multifd qpl compression accelerator implementation
3  *
4  * Copyright (c) 2023 Intel Corporation
5  *
6  * Authors:
7  *  Yuan Liu<yuan1.liu@intel.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or later.
10  * See the COPYING file in the top-level directory.
11  */
12 #include "qemu/osdep.h"
13 #include "qemu/module.h"
14 
15 static void multifd_qpl_register(void)
16 {
17     /* noop */
18 }
19 
20 migration_init(multifd_qpl_register);
21