Commit 0fa37b1e authored by Chris Nicholson's avatar Chris Nicholson Committed by Greg Kroah-Hartman

Staging: hv: fix brace coding style issue in Channel.c

This is a patch to the Channel.c file that fixes up a brace
warning found by checkpatch.pl
Signed-off-by: default avatarChris Nicholson <chris.nicholson@cnick.org.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f916a34d
......@@ -991,9 +991,8 @@ void VmbusChannelOnTimer(unsigned long data)
{
struct vmbus_channel *channel = (struct vmbus_channel *)data;
if (channel->OnChannelCallback) {
if (channel->OnChannelCallback)
channel->OnChannelCallback(channel->ChannelCallbackContext);
}
}
/**
......
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