aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/physdev.c
blob: bcf43370a23c8bcfbd230b86e2ce984a562fa798 (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(void) arg)
{
    printk("%s %d cmd=%d: not implemented yet\n", __func__, __LINE__, cmd);
    return -ENOSYS;
}

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