diff options
author | Jonghwan Choi <jhbird.choi@samsung.com> | 2013-05-20 02:55:39 +0200 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-05-20 04:39:23 +0200 |
commit | 2a647bfe1bf43af51530862b9ec70032bdd0a44c (patch) | |
tree | 48da5984693f4fb72ccc4bd7ef8ca614bc1147e9 /drivers/block | |
parent | virtio: console: Add emergency writeonly register to config space (diff) | |
download | linux-2a647bfe1bf43af51530862b9ec70032bdd0a44c.tar.xz linux-2a647bfe1bf43af51530862b9ec70032bdd0a44c.zip |
virtio_blk: Add missing 'static' qualifiers
Add missing 'static' qualifiers
Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/virtio_blk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 64723953e1c9..5cdf88b7ad9e 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 { |