From: Hannes Reinecke <hare@suse.de>
Subject: Fixup missing annotations 
Patch-Mainline: Not yet

Some virtio drivers are missing a '__refdata' annotation
so that the build will complain here.

Signed-off-by: Hannes Reinecke <hare@suse.de>

Index: linux-3.0-tmp-jikos/drivers/char/hw_random/virtio-rng.c
===================================================================
--- linux-3.0-tmp-jikos.orig/drivers/char/hw_random/virtio-rng.c
+++ linux-3.0-tmp-jikos/drivers/char/hw_random/virtio-rng.c
@@ -114,7 +114,7 @@ static struct virtio_device_id id_table[
 	{ 0 },
 };
 
-static struct virtio_driver virtio_rng_driver = {
+static struct virtio_driver __refdata virtio_rng_driver = {
 	.driver.name =	KBUILD_MODNAME,
 	.driver.owner =	THIS_MODULE,
 	.id_table =	id_table,
Index: linux-3.0-tmp-jikos/drivers/virtio/virtio_balloon.c
===================================================================
--- linux-3.0-tmp-jikos.orig/drivers/virtio/virtio_balloon.c
+++ linux-3.0-tmp-jikos/drivers/virtio/virtio_balloon.c
@@ -355,7 +355,7 @@ static unsigned int features[] = {
 	VIRTIO_BALLOON_F_STATS_VQ,
 };
 
-static struct virtio_driver virtio_balloon_driver = {
+static struct virtio_driver __refdata virtio_balloon_driver = {
 	.feature_table = features,
 	.feature_table_size = ARRAY_SIZE(features),
 	.driver.name =	KBUILD_MODNAME,
