From patchwork Tue Nov 3 00:21:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 539180 X-Patchwork-Delegate: sbabic@denx.de 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 0A1861402B4 for ; Tue, 3 Nov 2015 11:23:21 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=NMiHVhDa; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8F8BA4B8BC; Tue, 3 Nov 2015 01:23:18 +0100 (CET) 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 2xEwgFX9Nu6N; Tue, 3 Nov 2015 01:23:18 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 632C84B9D2; Tue, 3 Nov 2015 01:22:50 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4FDB84B9C0 for ; Tue, 3 Nov 2015 01:22:37 +0100 (CET) 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 k1ysNfokydCL for ; Tue, 3 Nov 2015 01:22:34 +0100 (CET) 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-qg0-f46.google.com (mail-qg0-f46.google.com [209.85.192.46]) by theia.denx.de (Postfix) with ESMTPS id 331674B9BB for ; Tue, 3 Nov 2015 01:22:05 +0100 (CET) Received: by qgbb65 with SMTP id b65so715238qgb.2 for ; Mon, 02 Nov 2015 16:22:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=/aGTllUIPn+Rs5MfzohyG8Pa/AgYuO7FlKccS84xrTI=; b=NMiHVhDaBaJvI+tQcEkVb89vLOtowBpshWbQy7yKP5CiXYGY6G+RXWbopguhIxxR+R 680Jmrl0deFWE85nYuQxymBZS+IY3v1u5kTzNWu63I0Pr/+0VoIg/+nhC3ENVMkGamgp SEi1bf8WzAax1w12/2e/dIDurxz6ZJXMdvT8+mi7FAcxkLxOORJ0W9a7+oZS86efWKL/ xESiFwKtcnHQi+uVHhT7bolStTOrfrDp4yADWcwBCZurLMpNycCIA5DMK9eMucQ9M/Ha aUv19UJSnfKuE4rJV+fJkap1fBf1Dm9QiCkXUVku+qgUO3TEygZTrgklayNXMbTz7apU fl0g== X-Received: by 10.140.99.6 with SMTP id p6mr14142213qge.76.1446510124310; Mon, 02 Nov 2015 16:22:04 -0800 (PST) Received: from localhost.localdomain ([179.159.5.130]) by smtp.gmail.com with ESMTPSA id f82sm2908154qkb.25.2015.11.02.16.22.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 02 Nov 2015 16:22:03 -0800 (PST) From: Fabio Estevam To: sbabic@denx.de Date: Mon, 2 Nov 2015 22:21:34 -0200 Message-Id: <1446510095-14793-5-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1446510095-14793-1-git-send-email-festevam@gmail.com> References: <1446510095-14793-1-git-send-email-festevam@gmail.com> Cc: Fabio Estevam , u-boot@lists.denx.de, Marek Vasut Subject: [U-Boot] [PATCH 5/6] novena: Remove empty reset_cpu() X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Fabio Estevam There is really no need to provide an empty reset_cpu() implementation, so just remove it. Cc: Marek Vasut Signed-off-by: Fabio Estevam Acked-by: Marek Vasut --- board/kosagi/novena/novena_spl.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/board/kosagi/novena/novena_spl.c b/board/kosagi/novena/novena_spl.c index b1688e0..eb46265 100644 --- a/board/kosagi/novena/novena_spl.c +++ b/board/kosagi/novena/novena_spl.c @@ -607,7 +607,3 @@ void board_init_f(ulong dummy) /* load/boot image from boot device */ board_init_r(NULL, 0); } - -void reset_cpu(ulong addr) -{ -}