Commit b5a2c4f1 authored by Paul Gortmaker's avatar Paul Gortmaker
Browse files

virtio: Add module.h to drivers/virtio users.



Up to now, the module.h header was as hard to keep out as
sunlight.  But we are cleaning that up.  Fix the virtio users
who simply expect module.h to be there in every C file.

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 39a0e33d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
#include <linux/virtio.h>
#include <linux/spinlock.h>
#include <linux/virtio_config.h>
#include <linux/module.h>

/* Unique numbering for virtio devices. */
static unsigned int dev_index;
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@
#include <linux/freezer.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/module.h>

struct virtio_balloon
{
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
#include <linux/virtio_config.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/module.h>

/* virtio guest is communicating with a virtual "device" that actually runs on
 * a host processor.  Memory barriers are used to control SMP effects. */