From patchwork Mon Aug 13 19:53:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Otavio Salvador X-Patchwork-Id: 177038 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 564AB2C008D for ; Tue, 14 Aug 2012 05:51:14 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D1F9E28081; Mon, 13 Aug 2012 21:51:10 +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 qiLXL5oTQTgK; Mon, 13 Aug 2012 21:51:10 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A168328085; Mon, 13 Aug 2012 21:51:09 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CD85228085 for ; Mon, 13 Aug 2012 21:51:07 +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 iZeH4Inxow4T for ; Mon, 13 Aug 2012 21:51:07 +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-gh0-f172.google.com (mail-gh0-f172.google.com [209.85.160.172]) by theia.denx.de (Postfix) with ESMTPS id 0D42428089 for ; Mon, 13 Aug 2012 21:50:59 +0200 (CEST) Received: by ghbg16 with SMTP id g16so3732978ghb.3 for ; Mon, 13 Aug 2012 12:50:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=jm/6uwfRPuV45lXPMBTYRndCnBMjqBkvojIxGsFQ2I0=; b=f/Ys3lIBHCN/FQrNeb1hLnu8TNkHqF3QCDIQk4PKxKsuQ3MJTwF7s9JnVcngH2C/h7 8DoL5eWgY5hzGzaUhSe7diyX6pYfe1HexKXui4lV1LJRrp2BN/15dwsQh3I8pw+wYiJe iuE3JCkX0dFPeWrzKDjl93JB3kDzO/7KneSPk96uyHc+sEleTRacmj4mN/2SiTdWiAo4 wubIESO7ao1LmKbPVHRn6N+vvBkOymTvU9WqrWWlYBlVqdeLS0PsOzgHyYnvYphrbEqf 0k4HhRTurEv6QPlKZ3r4fQRZHR2H7N34veDBOJc8PqsyTdrXTHk17Ka+T0YqrQhioxiK BSaA== Received: by 10.236.108.194 with SMTP id q42mr12741353yhg.3.1344887458058; Mon, 13 Aug 2012 12:50:58 -0700 (PDT) Received: from micro.lab.ossystems.com.br ([177.100.163.15]) by mx.google.com with ESMTPS id j10sm468791anl.20.2012.08.13.12.50.53 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 12:50:57 -0700 (PDT) From: Otavio Salvador To: U-Boot Mailing List Date: Mon, 13 Aug 2012 16:53:10 -0300 Message-Id: <1344887592-28393-2-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1344887592-28393-1-git-send-email-otavio@ossystems.com.br> References: <1344887592-28393-1-git-send-email-otavio@ossystems.com.br> Cc: Fabio Estevam , Marek Vasut Subject: [U-Boot] [PATCH v2 2/4] mxs: Remove not required include of iomux-mx28.h X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 The iomux-mx28.h include is not required on spl_mem_init.c so it has been droped. Signed-off-by: Otavio Salvador --- Changes in v2: - change short description to clearly describe what has been done arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c b/arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c index 88d1abe..e693145 100644 --- a/arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c +++ b/arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c @@ -26,7 +26,6 @@ #include #include #include -#include #include #include "mxs_init.h"