From patchwork Mon Dec 19 08:56:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chander Kashyap X-Patchwork-Id: 5866 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 769BB24056 for ; Mon, 19 Dec 2011 08:57:18 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 6C5B9A183C7 for ; Mon, 19 Dec 2011 08:57:18 +0000 (UTC) Received: by mail-ey0-f180.google.com with SMTP id c11so1639295eaa.11 for ; Mon, 19 Dec 2011 00:57:18 -0800 (PST) Received: by 10.204.156.219 with SMTP id y27mr4575865bkw.125.1324285038278; Mon, 19 Dec 2011 00:57:18 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.82.144 with SMTP id ac16cs943bkc; Mon, 19 Dec 2011 00:57:17 -0800 (PST) Received: by 10.236.146.4 with SMTP id q4mr25569185yhj.105.1324285035554; Mon, 19 Dec 2011 00:57:15 -0800 (PST) Received: from mail-tul01m020-f178.google.com (mail-tul01m020-f178.google.com [209.85.214.178]) by mx.google.com with ESMTPS id k69si8380947yhm.53.2011.12.19.00.57.15 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 19 Dec 2011 00:57:15 -0800 (PST) Received-SPF: neutral (google.com: 209.85.214.178 is neither permitted nor denied by best guess record for domain of chander.kashyap@linaro.org) client-ip=209.85.214.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.214.178 is neither permitted nor denied by best guess record for domain of chander.kashyap@linaro.org) smtp.mail=chander.kashyap@linaro.org Received: by obcuy5 with SMTP id uy5so2045028obc.37 for ; Mon, 19 Dec 2011 00:57:14 -0800 (PST) Received: by 10.182.162.70 with SMTP id xy6mr2309395obb.53.1324285034767; Mon, 19 Dec 2011 00:57:14 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id rc7sm18763346igb.0.2011.12.19.00.57.10 (version=SSLv3 cipher=OTHER); Mon, 19 Dec 2011 00:57:14 -0800 (PST) From: Chander Kashyap To: u-boot@lists.denx.de Cc: mk7.kang@samsung.com, bjlee@samsung.com, patches@linaro.org, samsung@lists.linaro.org, linaro-dev@lists.linaro.org, Chander Kashyap Subject: [PATCH V2 1/2] Exynos: PWM: Add TCMPB3 field in pwm structure Date: Mon, 19 Dec 2011 14:26:43 +0530 Message-Id: <1324285004-32354-2-git-send-email-chander.kashyap@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1324285004-32354-1-git-send-email-chander.kashyap@linaro.org> References: <1324285004-32354-1-git-send-email-chander.kashyap@linaro.org> Add TCMPB3 field in pwm structure, earliar this was res1. Signed-off-by: Chander Kashyap --- arch/arm/include/asm/arch-exynos/pwm.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/pwm.h b/arch/arm/include/asm/arch-exynos/pwm.h index d0cf3cb..3e95160 100644 --- a/arch/arm/include/asm/arch-exynos/pwm.h +++ b/arch/arm/include/asm/arch-exynos/pwm.h @@ -57,7 +57,7 @@ struct s5p_timer { unsigned int tcmpb2; unsigned int tcnto2; unsigned int tcntb3; - unsigned int res1; + unsigned int tcmpb3; unsigned int tcnto3; unsigned int tcntb4; unsigned int tcnto4;