Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756048AbYLKHVT (ORCPT ); Thu, 11 Dec 2008 02:21:19 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751184AbYLKHVD (ORCPT ); Thu, 11 Dec 2008 02:21:03 -0500 Received: from ti-out-0910.google.com ([209.85.142.188]:51035 "EHLO ti-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751094AbYLKHVB (ORCPT ); Thu, 11 Dec 2008 02:21:01 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=GisEM4lZoIVmMJhio8v678xjP+fyCegeym9vBn//y1YzTMr3tVmUrtXXPfwpeL1cKX 1flANULWysmYK4L8uMhVzO0nlsf/K8Wysh3hda436siPkbVRzzPehPZnV7TOu59MGvLt 79YPJjgPVMhQ4g9J5C7JVxgDv/PVZHkyoyY6A= Date: Thu, 11 Dec 2008 15:20:32 +0800 From: Zhenwen Xu To: Alexey Dobriyan Cc: linux-kernel@vger.kernel.org, rmk+kernel@arm.linux.org.uk, linux-arm@lists.arm.linux.org.uk Subject: [PATCH] fix some code style that line over 80 characters Message-ID: <20081211072032.GA7203@helight> Reply-To: Zhenwen Xu References: <20081210135143.GB4595@helight> <20081210150116.GB21396@x200.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081210150116.GB21396@x200.localdomain> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2460 Lines: 71 fix some code style that characters more than 80 in drivers/i2c/busses/i2c-s3c2410.c >From 449a3ddd01a98aae9122d5199083f45ab9c98469 Mon Sep 17 00:00:00 2001 From: Zhwen Xu Date: Wed, 10 Dec 2008 21:29:04 +0800 Subject: [PATCH] fix some code style that characters more than 80 Signed-off-by: ZhenwenXu --- drivers/i2c/busses/i2c-s3c2410.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index c772e02..c466870 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -109,7 +109,8 @@ static inline int s3c24xx_i2c_is2440(struct s3c24xx_i2c *i2c) * the default if there is none */ -static inline struct s3c2410_platform_i2c *s3c24xx_i2c_get_platformdata(struct device *dev) +static inline +struct s3c2410_platform_i2c *s3c24xx_i2c_get_platformdata(struct device *dev) { if (dev->platform_data != NULL) return (struct s3c2410_platform_i2c *)dev->platform_data; @@ -123,7 +124,8 @@ static inline struct s3c2410_platform_i2c *s3c24xx_i2c_get_platformdata(struct d * or zero to mean ok. */ -static inline void s3c24xx_i2c_master_complete(struct s3c24xx_i2c *i2c, int ret) +static inline void +s3c24xx_i2c_master_complete(struct s3c24xx_i2c *i2c, int ret) { dev_dbg(i2c->dev, "master_complete %d\n", ret); @@ -273,7 +275,8 @@ static inline int is_msgend(struct s3c24xx_i2c *i2c) * process an interrupt and work out what to do */ -static int i2s_s3c_irq_nextbyte(struct s3c24xx_i2c *i2c, unsigned long iicstat) +static int i2s_s3c_irq_nextbyte(struct s3c24xx_i2c *i2c, + unsigned long iicstat) { unsigned long tmp; unsigned char byte; @@ -502,7 +505,8 @@ static int s3c24xx_i2c_set_master(struct s3c24xx_i2c *i2c) * this starts an i2c transfer */ -static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c *i2c, struct i2c_msg *msgs, int num) +static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c *i2c, + struct i2c_msg *msgs, int num) { unsigned long timeout; int ret; -- 1.5.6.5 -- --------------------------------- Zhenwen Xu - Open and Free Home Page: http://zhwen.org My Studio: http://dim4.cn -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/