From patchwork Tue May 10 23:44:37 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 1432 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:51:57 -0000 Delivered-To: patches@linaro.org Received: by 10.224.61.3 with SMTP id r3cs38880qah; Tue, 10 May 2011 16:44:37 -0700 (PDT) Received: by 10.42.97.6 with SMTP id l6mr8928705icn.318.1305071077589; Tue, 10 May 2011 16:44:37 -0700 (PDT) Received: from mail-iy0-f178.google.com (mail-iy0-f178.google.com [209.85.210.178]) by mx.google.com with ESMTPS id wt16si21231584icb.139.2011.05.10.16.44.37 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 10 May 2011 16:44:37 -0700 (PDT) Received-SPF: pass (google.com: domain of linus.ml.walleij@gmail.com designates 209.85.210.178 as permitted sender) client-ip=209.85.210.178; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linus.ml.walleij@gmail.com designates 209.85.210.178 as permitted sender) smtp.mail=linus.ml.walleij@gmail.com; dkim=pass (test mode) header.i=@gmail.com Received: by iyi12 with SMTP id 12so7228741iyi.37 for ; Tue, 10 May 2011 16:44:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=cRCnbUATXkTKZuvRDVw+e3F5Elm1sC7HW2BHkKe99tw=; b=Ojjauv5mliZhrq1rRgPFh9GdqHFGmkxLH38EIF4cMb2GMdSTOXil0EdW3m8GmNp+bj U4nGEs5LWNPlKM1gtpIgCAPgZAXZZKLguQs4+zPBTcQUQnX2PxFTvNW0BlMXq9WxCnq9 F2XQJe4D736VwXIexjjN4jBp/yTa/PBhkArtE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=vdJMkg3hMNk92pgGXUJEHip/Htq6g64jYJx7y1B08GfkCzc8Uvqnndd4K8sTddBcLo M/3gK/R1vi1UVtnt88V7DTNjg1IBo8jXzAPFNyS5Di34FJZ560Ynk6TPtR+MnKixZLSp w9NiqASls2hDShqwjSCDHCWIdfUOoJYoQ+yE0= MIME-Version: 1.0 Received: by 10.42.150.70 with SMTP id z6mr2706201icv.164.1305071077301; Tue, 10 May 2011 16:44:37 -0700 (PDT) Received: by 10.231.20.3 with HTTP; Tue, 10 May 2011 16:44:37 -0700 (PDT) In-Reply-To: <1304976951-31479-1-git-send-email-linus.walleij@linaro.org> References: <1304976951-31479-1-git-send-email-linus.walleij@linaro.org> Date: Wed, 11 May 2011 01:44:37 +0200 Message-ID: Subject: Fwd: [PATCH 03/13] i2c/i2c-nomadik: fix speed enumerator From: Linus Walleij To: patches@linaro.org ---------- Forwarded message ---------- From: Linus Walleij Date: 2011/5/9 Subject: [PATCH 03/13] i2c/i2c-nomadik: fix speed enumerator To: Ben Dooks , linux-i2c@vger.kernel.org Kopia: Linus Walleij The I2C speed enumerators in the i2c-nomadik header file were in the wrong order. Signed-off-by: Linus Walleij ---  arch/arm/plat-nomadik/include/plat/i2c.h |    2 +-  1 files changed, 1 insertions(+), 1 deletions(-) -- 1.7.5.1 -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@vger.kernel.org More majordomo info at  http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/plat-nomadik/include/plat/i2c.h b/arch/arm/plat-nomadik/include/plat/i2c.h index 4ed4e27..8ba70ff 100644 --- a/arch/arm/plat-nomadik/include/plat/i2c.h +++ b/arch/arm/plat-nomadik/include/plat/i2c.h @@ -11,8 +11,8 @@  enum i2c_freq_mode {        I2C_FREQ_MODE_STANDARD,         /* up to 100 Kb/s */        I2C_FREQ_MODE_FAST,             /* up to 400 Kb/s */ +       I2C_FREQ_MODE_HIGH_SPEED,       /* up to 3.4 Mb/s */        I2C_FREQ_MODE_FAST_PLUS,        /* up to 1 Mb/s */ -       I2C_FREQ_MODE_HIGH_SPEED        /* up to 3.4 Mb/s */  };  /**