From patchwork Tue Mar 15 19:57:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Green X-Patchwork-Id: 637021 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 p2FJvT7Z007239 for ; Tue, 15 Mar 2011 19:57:29 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757082Ab1COT5Y (ORCPT ); Tue, 15 Mar 2011 15:57:24 -0400 Received: from mail-wy0-f174.google.com ([74.125.82.174]:62524 "EHLO mail-wy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755739Ab1COT5W (ORCPT ); Tue, 15 Mar 2011 15:57:22 -0400 Received: by mail-wy0-f174.google.com with SMTP id 21so915512wya.19 for ; Tue, 15 Mar 2011 12:57:22 -0700 (PDT) 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=ZX9MYo8KmEGF18NEI946QC8Wt4ynDI09birx4AGCpFujVaYtAW5M8SUkWyvijSM0Mx apQE2U6/VjIbmrZGrB5lH131uBiSwtxjt6cq8PHYjJeiYY+BmSMqYERr6Jw2CD12Ehh5 qNM1welipzo6/3QcDWLgAtrgxywGpw9VfyS4o= 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=QXjjn1rYi8a/EBLzDsn/LnhMCc5FYKCKxzaJmM44WwLWPCILT0Xg2u9BRyPV4E1p5h KykCTpScvbgCfQN/aFpPld/bCaS/RwTw4TnMTVQsG8ftFA2ICn1cb86xeeg7rFkRUPN9 8qBYNGbrGZpbM8e+gH8KcU22yHa9rt9UU6DL4= Received: by 10.227.28.154 with SMTP id m26mr12851436wbc.216.1300219041727; Tue, 15 Mar 2011 12:57:21 -0700 (PDT) Received: from otae.warmcat.com (s15404224.onlinehome-server.info [87.106.134.80]) by mx.google.com with ESMTPS id x1sm166301wbh.8.2011.03.15.12.57.20 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Mar 2011 12:57:21 -0700 (PDT) From: Andy Green Subject: [PATCH 3 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, 15 Mar 2011 19:57:19 +0000 Message-ID: <20110315195719.30000.62104.stgit@otae.warmcat.com> In-Reply-To: <20110315195147.30000.86184.stgit@otae.warmcat.com> References: <20110315195147.30000.86184.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, 15 Mar 2011 19:57:29 +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);