diff options
author | Gavin Thomas Claugus <gclaugus@gmail.com> | 2015-10-13 23:44:40 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-17 08:08:39 +0200 |
commit | b981da12513469324a18ae8250bca2848f8bf787 (patch) | |
tree | f6998840fb7fdf531d85fae36cff98dbb1d47bef | |
parent | Staging: olpc_dcon: Remove NULL comparison (diff) | |
download | linux-b981da12513469324a18ae8250bca2848f8bf787.tar.xz linux-b981da12513469324a18ae8250bca2848f8bf787.zip |
Staging: most: fix style issue in aim-cdev/cdev.c
Fix 80+ character line in cdev.c to stop checkpatch from whining.
Signed-off-by: Gavin Thomas Claugus <gclaugus@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/most/aim-cdev/cdev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/most/aim-cdev/cdev.c b/drivers/staging/most/aim-cdev/cdev.c index 930ada0922f3..16be88e2b454 100644 --- a/drivers/staging/most/aim-cdev/cdev.c +++ b/drivers/staging/most/aim-cdev/cdev.c @@ -99,7 +99,8 @@ static int aim_open(struct inode *inode, struct file *filp) return -EBUSY; } - ret = most_start_channel(channel->iface, channel->channel_id, &cdev_aim); + ret = most_start_channel(channel->iface, channel->channel_id, + &cdev_aim); if (ret) atomic_dec(&channel->access_ref); return ret; |