diff options
author | Devendra Naga <devendra.aaru@gmail.com> | 2012-07-01 23:31:35 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-07-06 16:21:54 -0700 |
commit | aab048923955ca2fa050a06b5a54568b4e6c5f4c (patch) | |
tree | b1162992e669b1ec116543167d85c11b0ef8e733 | |
parent | ec4c6675230402384976d34d38e2b828be6ad0d9 (diff) | |
download | linux-3.10-aab048923955ca2fa050a06b5a54568b4e6c5f4c.tar.gz linux-3.10-aab048923955ca2fa050a06b5a54568b4e6c5f4c.tar.bz2 linux-3.10-aab048923955ca2fa050a06b5a54568b4e6c5f4c.zip |
staging/ft1000: fix minor coding style problem
this following warn is fixed up
drivers/staging/ft1000/ft1000-usb/ft1000_hw.c:1754:
ERROR: open brace '{' following function declarations go on the next line
Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/ft1000/ft1000-usb/ft1000_hw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c b/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c index c1f4f13bf48..31929ef5332 100644 --- a/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c +++ b/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c @@ -1751,8 +1751,8 @@ out: return status; } -int ft1000_poll(void* dev_id) { - +int ft1000_poll(void* dev_id) +{ struct ft1000_device *dev = (struct ft1000_device *)dev_id; struct ft1000_info *info = netdev_priv(dev->net); |