lkml.org 
[lkml]   [2013]   [Jul]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/2] i2c.c: Fixed coding style issue for if statement
Date
From: "santosh.anbu" <asantosh.king@gmail.com>

Fixed coding style issue

Signed-off-by: santosh.anbu <asantosh.king@gmail.com>
---
drivers/gpu/drm/nouveau/core/subdev/bios/i2c.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/core/subdev/bios/i2c.c b/drivers/gpu/drm/nouveau/core/subdev/bios/i2c.c
index cfb9288..e88529c 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/bios/i2c.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/bios/i2c.c
@@ -114,15 +114,19 @@ dcb_i2c_parse(struct nouveau_bios *bios, u8 idx, struct dcb_i2c_entry *info)

if (idx == 0) {
info->drive = nv_ro08(bios, ent + 4);
- if (!info->drive) info->drive = 0x3f;
+ if (!info->drive)
+ info->drive = 0x3f;
info->sense = nv_ro08(bios, ent + 5);
- if (!info->sense) info->sense = 0x3e;
+ if (!info->sense)
+ info->sense = 0x3e;
} else
if (idx == 1) {
info->drive = nv_ro08(bios, ent + 6);
- if (!info->drive) info->drive = 0x37;
+ if (!info->drive)
+ info->drive = 0x37;
info->sense = nv_ro08(bios, ent + 7);
- if (!info->sense) info->sense = 0x36;
+ if (!info->sense)
+ info->sense = 0x36;
}

info->type = DCB_I2C_NV04_BIT;
--
1.8.1.2


\
 
 \ /
  Last update: 2013-07-27 20:01    [W:1.984 / U:0.360 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site