diff options
author | Vasanth <vasanth3g@gmail.com> | 2021-02-19 20:13:11 +0300 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2021-03-08 20:32:58 +0300 |
commit | f850a4cad27c3cfeb89fd28c768d5e6821bf178f (patch) | |
tree | 20b132b0f72d76368cdadc82f0c40f14176c0208 /drivers/hv | |
parent | a38fd8748464831584a19438cbb3082b5a2dab15 (diff) | |
download | linux-f850a4cad27c3cfeb89fd28c768d5e6821bf178f.tar.xz |
drivers: hv: Fix whitespace errors
Fixed checkpatch warning and errors on hv driver.
Signed-off-by: Vasanth Mathivanan <vasanth3g@gmail.com>
Link: https://lore.kernel.org/r/20210219171311.421961-1-vasanth3g@gmail.com
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/channel.c | 2 | ||||
-rw-r--r-- | drivers/hv/connection.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index 0bd202de7960..db30be8f9cce 100644 --- a/drivers/hv/channel.c +++ b/drivers/hv/channel.c @@ -385,7 +385,7 @@ nomem: * @kbuffer: from kmalloc or vmalloc * @size: page-size multiple * @send_offset: the offset (in bytes) where the send ring buffer starts, - * should be 0 for BUFFER type gpadl + * should be 0 for BUFFER type gpadl * @gpadl_handle: some funky thing */ static int __vmbus_establish_gpadl(struct vmbus_channel *channel, diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c index c83612cddb99..350e8c5cafa8 100644 --- a/drivers/hv/connection.c +++ b/drivers/hv/connection.c @@ -28,7 +28,7 @@ struct vmbus_connection vmbus_connection = { .conn_state = DISCONNECTED, .next_gpadl_handle = ATOMIC_INIT(0xE1E10), - .ready_for_suspend_event= COMPLETION_INITIALIZER( + .ready_for_suspend_event = COMPLETION_INITIALIZER( vmbus_connection.ready_for_suspend_event), .ready_for_resume_event = COMPLETION_INITIALIZER( vmbus_connection.ready_for_resume_event), |