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=-15.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 A6D8BC47094 for ; Thu, 10 Jun 2021 13:59:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8F0E6613E9 for ; Thu, 10 Jun 2021 13:59:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231249AbhFJOBr (ORCPT ); Thu, 10 Jun 2021 10:01:47 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:35535 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230311AbhFJOBq (ORCPT ); Thu, 10 Jun 2021 10:01:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1623333590; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fx4P1AWcI/t4nEynqEC+OGfVQRnoQFxSkbz5Bk3lO2c=; b=NAtOYdj81c9Y3xAINdReUryNPpEkEYrrv2gOsaWomkK+iJmQ6P+teXnHLg3uC8q89PmvgM pLWYZRtZP4VVBnPwN2L3L2zENSrvnGfeNxBatDcOqHGwzQOP4Mh0e/wWTN2eFN3fsNn9s9 3cJhV4k3czt5i71+tGW9zgUBtdj/CaU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-566-Y8cDpc9yOja_cRezyBrgPA-1; Thu, 10 Jun 2021 09:59:48 -0400 X-MC-Unique: Y8cDpc9yOja_cRezyBrgPA-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 7B9A580364C for ; Thu, 10 Jun 2021 13:59:47 +0000 (UTC) Received: from gondolin.fritz.box (ovpn-113-107.ams2.redhat.com [10.36.113.107]) by smtp.corp.redhat.com (Postfix) with ESMTP id 29973100238C; Thu, 10 Jun 2021 13:59:43 +0000 (UTC) From: Cornelia Huck To: Paolo Bonzini , Thomas Huth , Andrew Jones Cc: kvm@vger.kernel.org, Laurent Vivier , Cornelia Huck Subject: [kvm-unit-tests PATCH 2/2] add header guards for non-trivial headers Date: Thu, 10 Jun 2021 15:59:37 +0200 Message-Id: <20210610135937.94375-3-cohuck@redhat.com> In-Reply-To: <20210610135937.94375-1-cohuck@redhat.com> References: <20210610135937.94375-1-cohuck@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Add header guards to headers that do not simply include another one. Signed-off-by: Cornelia Huck --- lib/argv.h | 5 +++++ lib/arm/io.h | 5 +++++ lib/powerpc/io.h | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/lib/argv.h b/lib/argv.h index e5fcf8482ca8..1fd746dc2177 100644 --- a/lib/argv.h +++ b/lib/argv.h @@ -5,7 +5,12 @@ * under the terms of the GNU Library General Public License version 2. */ +#ifndef _ARGV_H_ +#define _ARGV_H_ + extern void __setup_args(void); extern void setup_args_progname(const char *args); extern void setup_env(char *env, int size); extern void add_setup_arg(const char *arg); + +#endif diff --git a/lib/arm/io.h b/lib/arm/io.h index 2746d72e8280..183479c899a9 100644 --- a/lib/arm/io.h +++ b/lib/arm/io.h @@ -4,4 +4,9 @@ * This work is licensed under the terms of the GNU GPL, version 2. */ +#ifndef _ARM_IO_H_ +#define _ARM_IO_H_ + extern void io_init(void); + +#endif diff --git a/lib/powerpc/io.h b/lib/powerpc/io.h index 1f5a7bd6d745..d4f21ba15a54 100644 --- a/lib/powerpc/io.h +++ b/lib/powerpc/io.h @@ -4,5 +4,10 @@ * This work is licensed under the terms of the GNU GPL, version 2. */ +#ifndef _POWERPC_IO_H_ +#define _POWERPC_IO_H_ + extern void io_init(void); extern void putchar(int c); + +#endif -- 2.31.1