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: 3128 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DD8CD23F41 for ; Tue, 26 Jul 2011 09:04:25 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id A8810A184F0 for ; Tue, 26 Jul 2011 09:04:25 +0000 (UTC) Received: by qwb8 with SMTP id 8so138273qwb.11 for ; Tue, 26 Jul 2011 02:04:25 -0700 (PDT) Received: by 10.229.25.212 with SMTP id a20mr399592qcc.148.1311671065210; Tue, 26 Jul 2011 02:04:25 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs104045qcb; Tue, 26 Jul 2011 02:04:25 -0700 (PDT) Received: by 10.224.31.145 with SMTP id y17mr4136308qac.372.1311671064830; Tue, 26 Jul 2011 02:04:24 -0700 (PDT) Received: from mail-vw0-f50.google.com (mail-vw0-f50.google.com [209.85.212.50]) by mx.google.com with ESMTPS id gm3si446186qab.40.2011.07.26.02.04.23 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 26 Jul 2011 02:04:23 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.212.50 is neither permitted nor denied by best guess record for domain of chander.kashyap@linaro.org) client-ip=209.85.212.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.212.50 is neither permitted nor denied by best guess record for domain of chander.kashyap@linaro.org) smtp.mail=chander.kashyap@linaro.org Received: by vws14 with SMTP id 14so164242vws.37 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 Cc: mk7.kang@samsung.com, bjlee@samsung.com, patches@linaro.org, samsung@lists.linaro.org, linaro-dev@lists.linaro.org, Chander Kashyap Subject: [PATCH] SMDKV310: Fix build error for smdkv310 board 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 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; }