1 /*
2  * Copyright (C) 2010      Advanced Micro Devices
3  * Author Christoph Egger <Christoph.Egger@amd.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License as published
7  * by the Free Software Foundation; version 2.1 only.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Lesser General Public License for more details.
13  */
14 
15 #include "libxl_osdeps.h" /* must come before any other headers */
16 
17 #include "libxl_internal.h"
18 
libxl__blktap_enabled(libxl__gc * gc)19 int libxl__blktap_enabled(libxl__gc *gc)
20 {
21     return 0;
22 }
23 
libxl__blktap_devpath(libxl__gc * gc,const char * disk,libxl_disk_format format)24 char *libxl__blktap_devpath(libxl__gc *gc,
25                             const char *disk,
26                             libxl_disk_format format)
27 {
28     return NULL;
29 }
30 
libxl__device_destroy_tapdisk(libxl__gc * gc,const char * params)31 int libxl__device_destroy_tapdisk(libxl__gc *gc, const char *params)
32 {
33     return 0;
34 }
35 
36 /*
37  * Local variables:
38  * mode: C
39  * c-basic-offset: 4
40  * indent-tabs-mode: nil
41  * End:
42  */
43