Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
21 lines
421 B
C
21 lines
421 B
C
/*
|
|
* Virtio Block Device common helpers
|
|
*
|
|
* Copyright IBM, Corp. 2007
|
|
*
|
|
* Authors:
|
|
* Anthony Liguori <[email protected]>
|
|
*
|
|
* 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
|