From patchwork Tue Jul 26 09:04:07 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chander Kashyap X-Patchwork-Id: 106803 X-Patchwork-Delegate: promsoft@gmail.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 CEC9FB6FF5 for ; Tue, 26 Jul 2011 19:04:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1CBBC280BC; Tue, 26 Jul 2011 11:04:31 +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 iJQDyYu4tSPC; Tue, 26 Jul 2011 11:04:30 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 09FA8280A2; Tue, 26 Jul 2011 11:04:29 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5689F280A2 for ; Tue, 26 Jul 2011 11:04:27 +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 0L5G-eys2nyq for ; Tue, 26 Jul 2011 11:04:26 +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-vw0-f44.google.com (mail-vw0-f44.google.com [209.85.212.44]) by theia.denx.de (Postfix) with ESMTPS id 1F3462809E for ; Tue, 26 Jul 2011 11:04:24 +0200 (CEST) Received: by vws12 with SMTP id 12so147127vws.3 for ; Tue, 26 Jul 2011 02:04:23 -0700 (PDT) Received: by 10.52.177.70 with SMTP id co6mr210178vdc.92.1311671062986; Tue, 26 Jul 2011 02:04:22 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id m9sm112162vcv.40.2011.07.26.02.04.19 (version=SSLv3 cipher=OTHER); Tue, 26 Jul 2011 02:04:22 -0700 (PDT) From: Chander Kashyap To: u-boot@lists.denx.de Date: Tue, 26 Jul 2011 14:34:07 +0530 Message-Id: <1311671047-21935-1-git-send-email-chander.kashyap@linaro.org> X-Mailer: git-send-email 1.7.4.1 Cc: linaro-dev@lists.linaro.org, bjlee@samsung.com, patches@linaro.org, mk7.kang@samsung.com, samsung@lists.linaro.org Subject: [U-Boot] [PATCH] SMDKV310: Fix build error for smdkv310 board X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 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 Fix build error for smdkv310 board: board/samsung/smdkv310/smdkv310.c:126: undefined reference to `gpio_set_pull' Signed-off-by: Chander Kashyap --- board/samsung/smdkv310/smdkv310.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/samsung/smdkv310/smdkv310.c b/board/samsung/smdkv310/smdkv310.c index 173520e..e0b89dd 100644 --- a/board/samsung/smdkv310/smdkv310.c +++ b/board/samsung/smdkv310/smdkv310.c @@ -123,7 +123,7 @@ int board_mmc_init(bd_t *bis) /* GPK2[0:1] pull disable */ if (i == 0 || i == 1) { - gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE); + s5p_gpio_set_pull(&gpio2->k2, i, GPIO_PULL_NONE); continue; }