From patchwork Mon Jul 2 09:03:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 9731 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 57A9C23E37 for ; Mon, 2 Jul 2012 09:15:34 +0000 (UTC) Received: from mail-gh0-f180.google.com (mail-gh0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id 14D82A18AB0 for ; Mon, 2 Jul 2012 09:15:33 +0000 (UTC) Received: by ghbz12 with SMTP id z12so4245490ghb.11 for ; Mon, 02 Jul 2012 02:15:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=z5akVYmYLP6bzNJEPp2BT14p96YJErLBckxihqrXtus=; b=LzGPfPOWF8YsaZeCOJ9hG3Qro0drwX3ye8NdZs+v8/Oq5hXBKV250ZgCSykuW5sOUy 3fTI0T8dggd/OyF0eZc/fBPeNq3aXUvDWgoS6sL7TIPEZFxYOcXupX4JWNXLtkUV3I+H H8einHulG7qFUFoOUY13wSKxSTc1xna/LpRvXuhOHSahv2hmlqMCFANDYar95QnGPaPg X8hsd6dg0J5GU7d04JsiiQ3btXvUAwcOlHEwSVeYhq6dBffdWhEF5JGhVcJj7SPhMu1f tJe+mVRfXQklOfkxNGZSJffdEaOQ6ZGrfpaxrp/X7lbdGUwGGEJF/L9vxUPkYpiFnTlP snIQ== Received: by 10.50.40.193 with SMTP id z1mr6793893igk.0.1341220533448; Mon, 02 Jul 2012 02:15:33 -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.231.24.148 with SMTP id v20csp19509ibb; Mon, 2 Jul 2012 02:15:32 -0700 (PDT) Received: by 10.66.83.226 with SMTP id t2mr19978372pay.38.1341220532740; Mon, 02 Jul 2012 02:15:32 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id wi5si20752816pbc.89.2012.07.02.02.15.32 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Jul 2012 02:15:32 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pbbrr4 with SMTP id rr4so8661302pbb.37 for ; Mon, 02 Jul 2012 02:15:32 -0700 (PDT) Received: by 10.68.194.4 with SMTP id hs4mr28023929pbc.128.1341220532428; Mon, 02 Jul 2012 02:15:32 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id ru4sm12553614pbc.66.2012.07.02.02.15.29 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Jul 2012 02:15:31 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Add missing .reserve field to SMDKC210 Date: Mon, 2 Jul 2012 14:33:11 +0530 Message-Id: <1341219791-17202-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQnezJlLrMX2I497MLks5qu+8Mv/Svf8qiZECsfwhieLSS2HEEzUsvCOtTEcGNBBz/0UHuUr Adds missing .reserve field to SMDKC210 board. Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/mach-smdkv310.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/mach-smdkv310.c b/arch/arm/mach-exynos/mach-smdkv310.c index 95ce9f6..2d34ec7 100644 --- a/arch/arm/mach-exynos/mach-smdkv310.c +++ b/arch/arm/mach-exynos/mach-smdkv310.c @@ -422,5 +422,6 @@ MACHINE_START(SMDKC210, "SMDKC210") .init_machine = smdkv310_machine_init, .init_late = exynos_init_late, .timer = &exynos4_timer, + .reserve = &smdkv310_reserve, .restart = exynos4_restart, MACHINE_END