diff options
author | Jonghwan Choi <jhbird.choi@samsung.com> | 2013-05-20 10:25:39 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-05-20 12:09:23 +0930 |
commit | 2a647bfe1bf43af51530862b9ec70032bdd0a44c (patch) | |
tree | 48da5984693f4fb72ccc4bd7ef8ca614bc1147e9 /drivers/block/virtio_blk.c | |
parent | 1c6264cc67ac8712d84392fbc9293289011407c0 (diff) |
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/virtio_blk.c')
-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 64723953e1c..5cdf88b7ad9 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 { |