1 /*
2 * ARM DomU ACPI generation
3 *
4 * Copyright (C) 2016 Linaro Ltd.
5 *
6 * Author: Shannon Zhao <shannon.zhao@linaro.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as published
10 * by the Free Software Foundation; version 2.1 only. with the special
11 * exception on linking described in file LICENSE.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
17 */
18
19 #include "libxl_arm.h"
20
libxl__prepare_acpi(libxl__gc * gc,libxl_domain_build_info * info,struct xc_dom_image * dom)21 int libxl__prepare_acpi(libxl__gc *gc, libxl_domain_build_info *info,
22 struct xc_dom_image *dom)
23 {
24 return ERROR_FAIL;
25 }
26
libxl__get_acpi_size(libxl__gc * gc,const libxl_domain_build_info * info,uint64_t * out)27 int libxl__get_acpi_size(libxl__gc *gc,
28 const libxl_domain_build_info *info,
29 uint64_t *out)
30 {
31 return ERROR_FAIL;
32 }
33
34 /*
35 * Local variables:
36 * mode: C
37 * c-basic-offset: 4
38 * indent-tabs-mode: nil
39 * End:
40 */
41