Skip to content

Commit

Permalink
Staging: hv: fix brace coding style issue in Channel.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Chris Nicholson authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent f916a34 commit 0fa37b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/staging/hv/Channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

/**
Expand Down

0 comments on commit 0fa37b1

Please sign in to comment.