From patchwork Thu Feb 25 13:32:38 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sriram X-Patchwork-Id: 82003 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o1PDXMfK009134 for ; Thu, 25 Feb 2010 13:33:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932620Ab0BYNcr (ORCPT ); Thu, 25 Feb 2010 08:32:47 -0500 Received: from bear.ext.ti.com ([192.94.94.41]:50404 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932550Ab0BYNcn (ORCPT ); Thu, 25 Feb 2010 08:32:43 -0500 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id o1PDWeOo000554 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 25 Feb 2010 07:32:42 -0600 Received: from psplinux051.india.ti.com (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id o1PDWcfn021881; Thu, 25 Feb 2010 19:02:39 +0530 (IST) Received: from psplinux051.india.ti.com (localhost [127.0.0.1]) by psplinux051.india.ti.com (8.13.1/8.13.1) with ESMTP id o1PDWc53032469; Thu, 25 Feb 2010 19:02:38 +0530 Received: (from a0875517@localhost) by psplinux051.india.ti.com (8.13.1/8.13.1/Submit) id o1PDWcuU032466; Thu, 25 Feb 2010 19:02:38 +0530 From: Sriramakrishnan To: linux-i2c@vger.kernel.org Cc: linux-omap@vger.kernel.org, Sriramakrishnan Subject: [PATCH] PCA953x : Fix compilation warning. Date: Thu, 25 Feb 2010 19:02:38 +0530 Message-Id: <1267104758-32131-1-git-send-email-srk@ti.com> X-Mailer: git-send-email 1.6.2.4 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.3 (demeter.kernel.org [140.211.167.41]); Thu, 25 Feb 2010 13:33:22 +0000 (UTC) diff --git a/include/linux/i2c/pca953x.h b/include/linux/i2c/pca953x.h index 81736d6..1284a2d 100644 --- a/include/linux/i2c/pca953x.h +++ b/include/linux/i2c/pca953x.h @@ -1,3 +1,8 @@ +#ifndef __LINUX_PCA953X_H +#define __LINUX_PCA953X_H + +#include + /* platform data for the PCA9539 16-bit I/O expander driver */ struct pca953x_platform_data { @@ -17,3 +22,4 @@ struct pca953x_platform_data { void *context); char **names; }; +#endif