From patchwork Tue Mar 8 11:08:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Green X-Patchwork-Id: 617951 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p28B8kFU026774 for ; Tue, 8 Mar 2011 11:08:54 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753682Ab1CHLIy (ORCPT ); Tue, 8 Mar 2011 06:08:54 -0500 Received: from mail-ww0-f42.google.com ([74.125.82.42]:56816 "EHLO mail-ww0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751800Ab1CHLIx (ORCPT ); Tue, 8 Mar 2011 06:08:53 -0500 Received: by wwi17 with SMTP id 17so809401wwi.1 for ; Tue, 08 Mar 2011 03:08:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:sender:from:subject:to:cc:date:message-id :in-reply-to:references:user-agent:mime-version:content-type :content-transfer-encoding; bh=3HykIpF8qsyU2O+VFnpxPeO44wGS0WB4tzxEfO2XZX4=; b=lj1bJahlo0UCOz7P3CH6zFZBe1rrqfuSdpn3KvfedseKi72G73IcdaGbND7bG1h2FY JirAc4kkiq94JaR1IbG9ZPxQdWg57ARDb9h8W/59fDyUqGeHAOvQC729FjMuVz2zlXku KFYdd5O3Ou6Io0lqJpCAwj6QU4jAOxFBjsbKw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=sender:from:subject:to:cc:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:content-transfer-encoding; b=F1Mq3Qq3pQt9zovw9BiDphCu5FL8tyuy5zY/ks3dgX1VQi+BgXZj77fFKh9ae2/x6w cqtSjH5+n0H9PhdscLRxRIxxkxzT0jv2PiV4qNToSnSKpAxiOQ8h1AIzTaEBzGnaXoHq XMoNdwivVh6DuUwxFP6kNbBHj52Hu/w5x4Ldw= Received: by 10.216.141.225 with SMTP id g75mr870175wej.10.1299582532261; Tue, 08 Mar 2011 03:08:52 -0800 (PST) Received: from otae.warmcat.com (s15404224.onlinehome-server.info [87.106.134.80]) by mx.google.com with ESMTPS id n1sm250630weq.31.2011.03.08.03.08.50 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 08 Mar 2011 03:08:51 -0800 (PST) From: Andy Green Subject: [PATCH 2 12/18] I2C: OMAP1/OMAP2+: add flags field to omap i2c platform data To: linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org Cc: patches@linaro.org, Ben Dooks , Andy Green Date: Tue, 08 Mar 2011 11:08:49 +0000 Message-ID: <20110308110849.23531.87678.stgit@otae.warmcat.com> In-Reply-To: <20110308105934.23531.83540.stgit@otae.warmcat.com> References: <20110308105934.23531.83540.stgit@otae.warmcat.com> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 08 Mar 2011 11:08:54 +0000 (UTC) diff --git a/include/linux/i2c-omap.h b/include/linux/i2c-omap.h index b321211..776c8e1 100644 --- a/include/linux/i2c-omap.h +++ b/include/linux/i2c-omap.h @@ -18,6 +18,7 @@ struct omap_i2c_bus_platform_data { u32 clkrate; u32 rev; + u32 flags; void (*set_mpu_wkup_lat)(struct device *dev, long set); int (*device_enable) (struct platform_device *pdev); int (*device_shutdown) (struct platform_device *pdev);