From patchwork Sun Dec 16 07:25:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olof Johansson X-Patchwork-Id: 1884451 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 0E9E13FCD5 for ; Sun, 16 Dec 2012 07:29:06 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tk8bT-0003O3-GS; Sun, 16 Dec 2012 07:25:39 +0000 Received: from mail-pb0-f49.google.com ([209.85.160.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Tk8bP-0003Nm-Sb for linux-arm-kernel@lists.infradead.org; Sun, 16 Dec 2012 07:25:36 +0000 Received: by mail-pb0-f49.google.com with SMTP id un15so2967056pbc.36 for ; Sat, 15 Dec 2012 23:25:33 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=3w51JI62ZqxST/Bpv16YXrhaU9JWYAiEw3cVi1bIiGQ=; b=FYj0hCsnXf7QtwruPRuDUddLKrKsRAKxJR7mE8jBT2t443LHRjAZe0bQFlCOvCarcU XDlmajG1vrCwb0USWdYGCtUKXBMyJ/OZAV7/rwK/PsTbMS72PdaLHoookLF1RopXyvU1 jpicLTrB+HfZ/AfZDErwLqIkTmWYxz3sUhJQ/ho1Vt2B6tcfRpdEuttWtEwDtEdftsVI o0pvq1wSwqL/I84MPKwGt/mMUpuMe5S7mbNSomqFTZupSw45Hp1YgB25agMMoBvk6fMT 9UfGrhMR2syCACNhVPKLL8e5FZN09CcxWwjTED2gbtqjU9Ut903zD4qUXwQ2N2WMO4l5 nPfQ== Received: by 10.68.233.196 with SMTP id ty4mr32049479pbc.23.1355642733387; Sat, 15 Dec 2012 23:25:33 -0800 (PST) Received: from quad.lixom.net (173-13-129-225-sfba.hfc.comcastbusiness.net. [173.13.129.225]) by mx.google.com with ESMTPS id qr8sm5965983pbc.64.2012.12.15.23.25.31 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 15 Dec 2012 23:25:31 -0800 (PST) From: Olof Johansson To: linux-arm-kernel@lists.infradead.org Subject: [PATCH] ARM: davinci: fix build break due to missing include Date: Sat, 15 Dec 2012 23:25:14 -0800 Message-Id: <1355642714-26879-1-git-send-email-olof@lixom.net> X-Mailer: git-send-email 1.7.10.1.488.g05fbf7a X-Gm-Message-State: ALoCoQll8bkemEnerQfllC2o3UikcNJQ82yaPuWfmOKVEC+N8wCTeZ2JqzzTCcAb8e7SYWj1iQ9D X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121216_022536_086723_D2A3D075 X-CRM114-Status: UNSURE ( 9.00 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Olof Johansson , Kevin Hilman , Sekhar Nori X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org arch/arm/mach-davinci/board-da850-evm.c: In function 'da850_evm_init': arch/arm/mach-davinci/board-da850-evm.c:1516:2: error: implicit declaration of function 'sram_get_gen_pool' [-Werror=implicit-function-declaration] arch/arm/mach-davinci/board-da850-evm.c:1516:31: warning: assignment makes pointer from integer without a cast [enabled by default] Signed-off-by: Olof Johansson Cc: Sekhar Nori Cc: Kevin Hilman Acked-by: Sekhar Nori #include #include +#include #include #include