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: Chris Nicholson <chris.nicholson@cnick.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Chris Nicholson 2010-02-20 20:36:23 +00:00 committed by Greg Kroah-Hartman
parent f916a34dc0
commit 0fa37b1ee9

View File

@ -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);
}
}
/**