From patchwork Fri Jun 29 07:28:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 168007 X-Patchwork-Delegate: vanbaren@cideas.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 04F711007D4 for ; Fri, 29 Jun 2012 17:28:14 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E7B022808D; Fri, 29 Jun 2012 09:28:12 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VW+ywnxpCqN4; Fri, 29 Jun 2012 09:28:12 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 61EBA28090; Fri, 29 Jun 2012 09:28:11 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B875928090 for ; Fri, 29 Jun 2012 09:28:08 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UHe8sbZf9NU0 for ; Fri, 29 Jun 2012 09:28:08 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-ee0-f44.google.com (mail-ee0-f44.google.com [74.125.83.44]) by theia.denx.de (Postfix) with ESMTPS id D37A12808D for ; Fri, 29 Jun 2012 09:28:06 +0200 (CEST) Received: by eekd4 with SMTP id d4so1247918eek.3 for ; Fri, 29 Jun 2012 00:28:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:message-id:x-mailer:x-gm-message-state; bh=ufA3V9HJb427st+YFQcXK9F7v1RyUfckRbRj8BZNJ8I=; b=lGQtLZcKSe7Z5qN4rZrHOStU9tRPGClw4Xv9AYuxyBY6MqCOKpJDR/+gNEt0WMSh7v kr/Ab8gPax8vtKAMOUNROsKjb9aXyOtbkh8s/bdkoSp2eFTR+7rV2TmZvS9CWEOckQIq wJGpVMN63SZLErwh7rZ+G3dygEX6DHifLtQ0JHaHgD3rzKHDta+kNegJZGS904zlg2w9 u+zwp33CMbhnTqDokSSvr3KxNCD1Za02DZO8AIvDlnfA6q6d/HpXMPSOJgaWVFFI/QUN aFfntzBfCtjAUnJBw+I5N4dEYQ5kgxGNuxemt/z8YujUQu+IAV1kt470skgad9zxuyin BX8w== Received: by 10.216.226.140 with SMTP id b12mr173823weq.216.1340954885338; Fri, 29 Jun 2012 00:28:05 -0700 (PDT) Received: from localhost (11.161.broadband5.iol.cz. [88.100.161.11]) by mx.google.com with ESMTPS id bg10sm6873898wib.9.2012.06.29.00.28.03 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 29 Jun 2012 00:28:04 -0700 (PDT) From: Michal Simek To: u-boot@lists.denx.de Date: Fri, 29 Jun 2012 09:28:02 +0200 Message-Id: <1340954882-21515-1-git-send-email-monstr@monstr.eu> X-Mailer: git-send-email 1.7.0.4 X-Gm-Message-State: ALoCoQkfjlj7jDc0PEd1I12VMFLX+kIA2hQppho1SsoiMe7KfpC/89+BsBlOrEfaEn3xVRnWFIZI Subject: [U-Boot] [PATCH] fdt: Include arch specific gpio.h X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Also include arch specific gpio.h which can contain gpio function implementation. Signed-off-by: Michal Simek CC: Simon Glass --- lib/fdtdec.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/fdtdec.c b/lib/fdtdec.c index cc09e06..b12eb77 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -25,6 +25,7 @@ #include /* we need the generic GPIO interface here */ +#include #include DECLARE_GLOBAL_DATA_PTR;