public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] virtio_blk: Add missing 'static' qualifiers
@ 2013-05-03  1:50 Jonghwan Choi
  2013-05-05 13:34 ` Michael S. Tsirkin
  0 siblings, 1 reply; 3+ messages in thread
From: Jonghwan Choi @ 2013-05-03  1:50 UTC (permalink / raw)
  To: 'Jonghwan Choi', linux-kernel
  Cc: 'Rusty Russell', 'Michael S. Tsirkin'

Add missing 'static' qualifiers

Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
---
 drivers/block/virtio_blk.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
index 6472395..5cdf88b 100644
--- a/drivers/block/virtio_blk.c
+++ b/drivers/block/virtio_blk.c
@@ -20,7 +20,7 @@ module_param(use_bio, bool, S_IRUGO);
 static int major;
 static DEFINE_IDA(vd_index_ida);
 
-struct workqueue_struct *virtblk_wq;
+static struct workqueue_struct *virtblk_wq;
 
 struct virtio_blk
 {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-06  7:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-03  1:50 [PATCH] virtio_blk: Add missing 'static' qualifiers Jonghwan Choi
2013-05-05 13:34 ` Michael S. Tsirkin
2013-05-06  5:45   ` Rusty Russell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox