aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/physdev.c
blob: 61b4a184add8c63732509bf0480d6c6c4282b33b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/******************************************************************************
 * Arch-specific physdev.c
 *
 * Copyright (c) 2012, Citrix Systems
 */

#include <xen/config.h>
#include <xen/types.h>
#include <xen/lib.h>
#include <xen/errno.h>
#include <asm/hypercall.h>


int do_physdev_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg)
{
    printk("%s %d cmd=%d: not implemented yet\n", __func__, __LINE__, cmd);
    return -ENOSYS;
}

/*
 * Local variables:
 * mode: C
 * c-file-style: "BSD"
 * c-basic-offset: 4
 * indent-tabs-mode: nil
 * End:
 */