Commit 369cb5ce authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Staging: hv: Move module parameter to earlier in the file

Move module parameter to be earlier in the file.
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f84044d3
...@@ -126,6 +126,9 @@ static void blkvsc_request_completion(struct hv_storvsc_request *request); ...@@ -126,6 +126,9 @@ static void blkvsc_request_completion(struct hv_storvsc_request *request);
static int blkvsc_ringbuffer_size = BLKVSC_RING_BUFFER_SIZE; static int blkvsc_ringbuffer_size = BLKVSC_RING_BUFFER_SIZE;
module_param(blkvsc_ringbuffer_size, int, S_IRUGO);
MODULE_PARM_DESC(ring_size, "Ring buffer size (in bytes)");
/* /*
* There is a circular dependency involving blkvsc_probe() * There is a circular dependency involving blkvsc_probe()
* and block_ops. * and block_ops.
...@@ -1214,9 +1217,6 @@ static void blkvsc_request(struct request_queue *queue) ...@@ -1214,9 +1217,6 @@ static void blkvsc_request(struct request_queue *queue)
} }
module_param(blkvsc_ringbuffer_size, int, S_IRUGO);
MODULE_PARM_DESC(ring_size, "Ring buffer size (in bytes)");
/* The one and only one */ /* The one and only one */
static struct storvsc_driver_object g_blkvsc_drv; static struct storvsc_driver_object g_blkvsc_drv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment