From patchwork Thu Dec 22 10:52:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chander Kashyap X-Patchwork-Id: 5952 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 303E02401D for ; Thu, 22 Dec 2011 10:53:45 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 26DE7A185F1 for ; Thu, 22 Dec 2011 10:53:45 +0000 (UTC) Received: by mail-ey0-f180.google.com with SMTP id c11so5602457eaa.11 for ; Thu, 22 Dec 2011 02:53:45 -0800 (PST) Received: by 10.204.133.207 with SMTP id g15mr2943537bkt.17.1324551224922; Thu, 22 Dec 2011 02:53:44 -0800 (PST) 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.205.82.144 with SMTP id ac16cs62450bkc; Thu, 22 Dec 2011 02:53:44 -0800 (PST) Received: by 10.50.190.201 with SMTP id gs9mr8341504igc.1.1324551222773; Thu, 22 Dec 2011 02:53:42 -0800 (PST) Received: from mail-iy0-f178.google.com (mail-iy0-f178.google.com [209.85.210.178]) by mx.google.com with ESMTPS id io5si11395156igc.57.2011.12.22.02.53.42 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Dec 2011 02:53:42 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.178 is neither permitted nor denied by best guess record for domain of chander.kashyap@linaro.org) client-ip=209.85.210.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.178 is neither permitted nor denied by best guess record for domain of chander.kashyap@linaro.org) smtp.mail=chander.kashyap@linaro.org Received: by mail-iy0-f178.google.com with SMTP id f6so16051681iag.37 for ; Thu, 22 Dec 2011 02:53:42 -0800 (PST) Received: by 10.42.29.1 with SMTP id p1mr12062236icc.40.1324551222065; Thu, 22 Dec 2011 02:53:42 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id f32sm24601659ibf.9.2011.12.22.02.53.38 (version=SSLv3 cipher=OTHER); Thu, 22 Dec 2011 02:53:41 -0800 (PST) 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 6/6] SMDK5250: enable device tree support Date: Thu, 22 Dec 2011 16:22:48 +0530 Message-Id: <1324551168-1202-7-git-send-email-chander.kashyap@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1324551168-1202-1-git-send-email-chander.kashyap@linaro.org> References: <1324551168-1202-1-git-send-email-chander.kashyap@linaro.org> Enable passing a flattened device tree to the kernel. Signed-off-by: Chander Kashyap --- include/configs/smdk5250.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index d99dfd0..31f56fd 100644 --- a/include/configs/smdk5250.h +++ b/include/configs/smdk5250.h @@ -182,4 +182,7 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR - 0x1000000) #define MMC_MAX_CHANNEL 5 +/* Enable devicetree support */ +#define CONFIG_OF_LIBFDT + #endif /* __CONFIG_H */