Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright (C) ST-Ericsson AB 2012
0003  * Author: Sjur Brændeland <sjur.brandeland@stericsson.com>
0004  *
0005  * This header is BSD licensed so
0006  * anyone can use the definitions to implement compatible remote processors
0007  */
0008 
0009 #ifndef VIRTIO_CAIF_H
0010 #define VIRTIO_CAIF_H
0011 
0012 #include <linux/types.h>
0013 struct virtio_caif_transf_config {
0014     __virtio16 headroom;
0015     __virtio16 tailroom;
0016     __virtio32 mtu;
0017     u8 reserved[4];
0018 };
0019 
0020 struct virtio_caif_config {
0021     struct virtio_caif_transf_config uplink, downlink;
0022     u8 reserved[8];
0023 };
0024 #endif