|
Linux Kernel
3.7.1
|
#include <linux/highmem.h>#include <linux/interrupt.h>#include <linux/io.h>#include <linux/list.h>#include <linux/module.h>#include <linux/platform_device.h>#include <linux/slab.h>#include <linux/spinlock.h>#include <linux/virtio.h>#include <linux/virtio_config.h>#include <linux/virtio_mmio.h>#include <linux/virtio_ring.h>Go to the source code of this file.
Data Structures | |
| struct | virtio_mmio_device |
| struct | virtio_mmio_vq_info |
Macros | |
| #define | pr_fmt(fmt) "virtio-mmio: " fmt |
| #define | VIRTIO_MMIO_VRING_ALIGN PAGE_SIZE |
| #define | to_virtio_mmio_device(_plat_dev) container_of(_plat_dev, struct virtio_mmio_device, vdev) |
Functions | |
| MODULE_DEVICE_TABLE (of, virtio_mmio_match) | |
| module_init (virtio_mmio_init) | |
| module_exit (virtio_mmio_exit) | |
| MODULE_AUTHOR ("Pawel Moll <[email protected]>") | |
| MODULE_DESCRIPTION ("Platform bus driver for memory mapped virtio devices") | |
| MODULE_LICENSE ("GPL") | |
| #define pr_fmt | ( | fmt | ) | "virtio-mmio: " fmt |
Definition at line 89 of file virtio_mmio.c.
| #define to_virtio_mmio_device | ( | _plat_dev | ) | container_of(_plat_dev, struct virtio_mmio_device, vdev) |
Definition at line 112 of file virtio_mmio.c.
| #define VIRTIO_MMIO_VRING_ALIGN PAGE_SIZE |
Definition at line 108 of file virtio_mmio.c.
| MODULE_AUTHOR | ( | "Pawel Moll <[email protected]>" | ) |
| MODULE_DEVICE_TABLE | ( | of | , |
| virtio_mmio_match | |||
| ) |
| module_exit | ( | virtio_mmio_exit | ) |
| module_init | ( | virtio_mmio_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2