From patchwork Wed Aug 3 19:34:42 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 655581 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3s4NcS0N21z9sxR for ; Thu, 4 Aug 2016 05:36:56 +1000 (AEST) Received: from ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3s4NcR6knnzDqYW for ; Thu, 4 Aug 2016 05:36:55 +1000 (AEST) X-Original-To: slof@lists.ozlabs.org Delivered-To: slof@lists.ozlabs.org Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3s4NZ25JJ8zDqTX for ; Thu, 4 Aug 2016 05:34:50 +1000 (AEST) Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 22A2CC04D2AE; Wed, 3 Aug 2016 19:34:49 +0000 (UTC) Received: from thh440s.redhat.com (ovpn-116-62.ams2.redhat.com [10.36.116.62]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u73JYiKL028877; Wed, 3 Aug 2016 15:34:48 -0400 From: Thomas Huth To: slof@lists.ozlabs.org Date: Wed, 3 Aug 2016 21:34:42 +0200 Message-Id: <1470252884-16602-3-git-send-email-thuth@redhat.com> In-Reply-To: <1470252884-16602-1-git-send-email-thuth@redhat.com> References: <1470252884-16602-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Wed, 03 Aug 2016 19:34:49 +0000 (UTC) Subject: [SLOF] [PATCH 2/4] Do not include calculatecrc.h from assembler files X-BeenThere: slof@lists.ozlabs.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Patches for https://github.com/aik/SLOF" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: areber@redhat.com MIME-Version: 1.0 Errors-To: slof-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "SLOF" The defines from calculatecrc.h are not used in any of the assembler files anymore. So there's no need anymore to include this file here. Signed-off-by: Thomas Huth --- llfw/io_generic/io_generic.S | 2 -- llfw/nvramlog.S | 1 - 2 files changed, 3 deletions(-) diff --git a/llfw/io_generic/io_generic.S b/llfw/io_generic/io_generic.S index 9c1db41..cdb6416 100644 --- a/llfw/io_generic/io_generic.S +++ b/llfw/io_generic/io_generic.S @@ -10,8 +10,6 @@ * IBM Corporation - initial implementation *****************************************************************************/ #include "macros.h" -#include "calculatecrc.h" -#include "calculatecrc.h" .text diff --git a/llfw/nvramlog.S b/llfw/nvramlog.S index 3ad2de7..42dd5fc 100644 --- a/llfw/nvramlog.S +++ b/llfw/nvramlog.S @@ -12,7 +12,6 @@ #include #include #include -#include #if !defined(DISABLE_NVRAM) && !defined(RTAS_NVRAM)