All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vc04_services: Fixing coding guideline error
@ 2017-03-15  6:31 ` Pushkar Jambhlekar
  0 siblings, 0 replies; 10+ messages in thread
From: Pushkar Jambhlekar @ 2017-03-15  6:31 UTC (permalink / raw)
  To: linux-arm-kernel

Fixing 'if' block coding style. '{' should follow 'if' for multiline block

Signed-off-by: Pushkar Jambhlekar <pushkar.iit@gmail.com>
---
 drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
index 48984ab..ca896a5 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
@@ -797,8 +797,7 @@ int32_t vchi_get_peer_version(const VCHI_SERVICE_HANDLE_T handle, short *peer_ve
 {
 	int32_t ret = -1;
 	SHIM_SERVICE_T *service = (SHIM_SERVICE_T *)handle;
-	if (service)
-	{
+	if (service) {
 		VCHIQ_STATUS_T status;
 
 		status = vchiq_get_peer_version(service->handle, peer_version);
-- 
2.7.4

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

end of thread, other threads:[~2017-03-21  7:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-15  6:31 [PATCH] vc04_services: Fixing coding guideline error Pushkar Jambhlekar
2017-03-15  6:31 ` Pushkar Jambhlekar
2017-03-16  5:31 ` Pushkar Jambhlekar
2017-03-16  5:31   ` Pushkar Jambhlekar
2017-03-16  6:36   ` Greg Kroah-Hartman
2017-03-16  6:36     ` Greg Kroah-Hartman
2017-03-16 11:40   ` Dan Carpenter
2017-03-16 11:40     ` Dan Carpenter
2017-03-21  7:37 ` Greg Kroah-Hartman
2017-03-21  7:37   ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.