blob: 8c072826db557fb43863c8ae20a28eb106e3c88e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0+ */
#ifndef __VIRTIO_MMIO_H__
#define __VIRTIO_MMIO_H__
#include <linux/types.h>
struct virtio_mmio_plat {
phys_addr_t base;
};
#endif /* __VIRTIO_MMIO_H__ */
|