21 lines
421 B
C
21 lines
421 B
C
|
/*
|
||
|
* Virtio Block Device common helpers
|
||
|
*
|
||
|
* Copyright IBM, Corp. 2007
|
||
|
*
|
||
|
* Authors:
|
||
|
* Anthony Liguori <aliguori@us.ibm.com>
|
||
|
*
|
||
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
||
|
* the COPYING file in the top-level directory.
|
||
|
*/
|
||
|
|
||
|
#ifndef VIRTIO_BLK_COMMON_H
|
||
|
#define VIRTIO_BLK_COMMON_H
|
||
|
|
||
|
#include "hw/virtio/virtio.h"
|
||
|
|
||
|
extern const VirtIOConfigSizeParams virtio_blk_cfg_size_params;
|
||
|
|
||
|
#endif
|