xref: /openbmc/qemu/migration/multifd-uadk.c (revision f3d8bb75)
1 /*
2  * Multifd UADK compression accelerator implementation
3  *
4  * Copyright (c) 2024 Huawei Technologies R & D (UK) Ltd
5  *
6  * Authors:
7  *  Shameer Kolothum <shameerali.kolothum.thodi@huawei.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 
13 #include "qemu/osdep.h"
14 #include "qemu/module.h"
15 
16 static void multifd_uadk_register(void)
17 {
18     /* noop for now */
19 }
20 migration_init(multifd_uadk_register);
21