Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1380862
| From | tcharding <me@tobin.cc> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/4] drivers: staging: fix line length |
| Date | 2016-04-18 00:40 +0200 |
| Message-ID | <rp3we-38T-21@gated-at.bofh.it> (permalink) |
| References | <rp3wd-38T-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
drivers/staging/android/ion/ion.c checkpatch produces line over 80
character warnings.
This patch is whitespace only and fixes these warnings.
Signed-off-by: tcharding <me@tobin.cc>
---
drivers/staging/android/ion/ion.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c
index c4a8aef..4e02209 100644
--- a/drivers/staging/android/ion/ion.c
+++ b/drivers/staging/android/ion/ion.c
@@ -551,7 +551,8 @@ struct ion_handle *ion_alloc(struct ion_client *client, size_t len,
}
EXPORT_SYMBOL(ion_alloc);
-static void ion_free_nolock(struct ion_client *client, struct ion_handle *handle)
+static void ion_free_nolock(struct ion_client *client,
+ struct ion_handle *handle)
{
bool valid_handle;
@@ -1358,7 +1359,8 @@ static long ion_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
struct ion_handle *handle;
mutex_lock(&client->lock);
- handle = ion_handle_get_by_id_nolock(client, data.handle.handle);
+ handle = ion_handle_get_by_id_nolock(client,
+ data.handle.handle);
if (IS_ERR(handle)) {
mutex_unlock(&client->lock);
return PTR_ERR(handle);
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 0/4] drivers: staging: checkpatch fixes tcharding <me@tobin.cc> - 2016-04-18 00:40 +0200
[PATCH 4/4] drivers: staging: remove BUG_ON tcharding <me@tobin.cc> - 2016-04-18 00:40 +0200
[PATCH 1/4] drivers: staging: fix parameter alignment tcharding <me@tobin.cc> - 2016-04-18 00:40 +0200
Re: [PATCH 1/4] drivers: staging: fix parameter alignment Greg KH <gregkh@linuxfoundation.org> - 2016-04-18 02:00 +0200
[PATCH 2/4] drivers: staging: fix line length tcharding <me@tobin.cc> - 2016-04-18 00:40 +0200
csiph-web