From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7C43CC4338F for ; Thu, 29 Jul 2021 15:37:20 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 46B946054E for ; Thu, 29 Jul 2021 15:37:20 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 46B946054E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:List-Subscribe:List-Help: List-Post:List-Archive:List-Unsubscribe:List-Id:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=N8rX5uMyefSkmXbUkuixN6fyg88DEQvxXfJOXdTHaK4=; b=WiqUrCB261ktTL BesN0mJHJFr/evW5Gvt3EZyAIYGQd9hp85bIy2eK1oT0EHx9ZDqdiJaOUUycsgKaN75TtspO1SBVV lr5CrK7Ey+Phrt2/eg4/g2RIamtmtGqGZ3p8+Kryo/YntAn+bzZSCcpIyITXFW2T0fTsSnsgHqdy/ kpdaeseWszf3Clo7Rdssx/Uy3Eibg8l8BdvaoRRwdnych/QhiHQc2qPDEhrqV543rrEkUDWHrvoKo JHG5EUwUMTH1IVjRxapeKpBLMAnZ67yZBlTD4rOfyBOF9uWFRwIQ+ovWglQyu0xrh2hYaP3vnrJuq HE8SCBdFwn+q16Zda4HA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1m983a-004kDv-0i; Thu, 29 Jul 2021 15:34:47 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1m97qS-004gc5-St for linux-arm-kernel@lists.infradead.org; Thu, 29 Jul 2021 15:21:18 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 10AD91063; Thu, 29 Jul 2021 08:21:12 -0700 (PDT) Received: from lakrids.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 451163F73D; Thu, 29 Jul 2021 08:21:11 -0700 (PDT) From: Mark Rutland To: linux-arm-kernel@lists.infradead.org Cc: Andre.Przywara@arm.com, Jaxson.Han@arm.com, mark.rutland@arm.com, Wei.Chen@arm.com Subject: [boot-wrapper PATCH 11/12] Rename `spin.h` -> `boot.h` Date: Thu, 29 Jul 2021 16:20:49 +0100 Message-Id: <20210729152050.23635-12-mark.rutland@arm.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20210729152050.23635-1-mark.rutland@arm.com> References: <20210729152050.23635-1-mark.rutland@arm.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210729_082113_061482_7FD5CA39 X-CRM114-Status: GOOD ( 10.36 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org In `spin.h` we have function prototypes provided by `boot.c`. For clarity, let's align the naming. There should be no functional change as a result of this patch. Signed-off-by: Mark Rutland --- boot_common.c | 2 +- include/{spin.h => boot.h} | 6 +++--- psci.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename include/{spin.h => boot.h} (88%) diff --git a/boot_common.c b/boot_common.c index d48b7e1..eada179 100644 --- a/boot_common.c +++ b/boot_common.c @@ -6,8 +6,8 @@ * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE.txt file. */ +#include #include -#include extern unsigned long entrypoint; extern unsigned long dtb; diff --git a/include/spin.h b/include/boot.h similarity index 88% rename from include/spin.h rename to include/boot.h index 15bbe27..d75e013 100644 --- a/include/spin.h +++ b/include/boot.h @@ -1,13 +1,13 @@ /* - * include/spin.h + * include/boot.h * * Copyright (C) 2015 ARM Limited. All rights reserved. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE.txt file. */ -#ifndef __SPIN_H -#define __SPIN_H +#ifndef __BOOT_H +#define __BOOT_H #include diff --git a/psci.c b/psci.c index df5b0f2..a0e8700 100644 --- a/psci.c +++ b/psci.c @@ -10,9 +10,9 @@ #include #include +#include #include #include -#include #ifndef CPU_IDS #error "No MPIDRs provided" -- 2.11.0 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel