public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: android: fix coding style warning
@ 2016-05-23  3:52 Jaime Arrocha
  2016-08-15 14:50 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Jaime Arrocha @ 2016-05-23  3:52 UTC (permalink / raw)
  To: gregkh; +Cc: arve, riandrews, devel, linux-kernel, Jaime Arrocha

From: Jaime Arrocha <jarr@innercoder.com>

Fixed checkpatch.pl warning about 'line over 80 characters'.

Signed-off-by: Jaime Arrocha <jarr@innercoder.com>
---
 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 a2cf93b..44b3874 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.1.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-15 14:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-23  3:52 [PATCH] Staging: android: fix coding style warning Jaime Arrocha
2016-08-15 14:50 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox