Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b1f91fb authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Greg Kroah-Hartman
Browse files

vmbus: remove useless return's



No need for empty return at end of void function

Signed-off-by: default avatarStephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 67071816
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -722,8 +722,6 @@ static void hv_mem_hot_add(unsigned long start, unsigned long size,
						    5*HZ);
						    5*HZ);
		post_status(&dm_device);
		post_status(&dm_device);
	}
	}

	return;
}
}


static void hv_online_page(struct page *pg)
static void hv_online_page(struct page *pg)
+0 −2
Original line number Original line Diff line number Diff line
@@ -187,8 +187,6 @@ static void fcopy_send_data(struct work_struct *dummy)
		}
		}
	}
	}
	kfree(smsg_out);
	kfree(smsg_out);

	return;
}
}


/*
/*
+0 −2
Original line number Original line Diff line number Diff line
@@ -484,8 +484,6 @@ kvp_send_key(struct work_struct *dummy)
	}
	}


	kfree(message);
	kfree(message);

	return;
}
}


/*
/*
+0 −2
Original line number Original line Diff line number Diff line
@@ -213,8 +213,6 @@ static void vss_send_op(void)
	}
	}


	kfree(vss_msg);
	kfree(vss_msg);

	return;
}
}


static void vss_handle_request(struct work_struct *dummy)
static void vss_handle_request(struct work_struct *dummy)
+0 −2
Original line number Original line Diff line number Diff line
@@ -73,8 +73,6 @@ static void hv_signal_on_write(u32 old_write, struct vmbus_channel *channel)
	 */
	 */
	if (old_write == READ_ONCE(rbi->ring_buffer->read_index))
	if (old_write == READ_ONCE(rbi->ring_buffer->read_index))
		vmbus_setevent(channel);
		vmbus_setevent(channel);

	return;
}
}


/* Get the next write location for the specified ring buffer. */
/* Get the next write location for the specified ring buffer. */
Loading