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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D3E4BC7EE25 for ; Wed, 7 Jun 2023 22:23:09 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 34E77846D7; Thu, 8 Jun 2023 00:23:07 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 177CC84706; Thu, 8 Jun 2023 00:23:05 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by phobos.denx.de (Postfix) with ESMTP id 956C2809A5 for ; Thu, 8 Jun 2023 00:23:02 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=andre.przywara@arm.com 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 C6E2CAB6; Wed, 7 Jun 2023 15:23:46 -0700 (PDT) Received: from slackpad.lan (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id BC81F3F587; Wed, 7 Jun 2023 15:23:00 -0700 (PDT) Date: Wed, 7 Jun 2023 23:22:27 +0100 From: Andre Przywara To: Sam Edwards Cc: u-boot@lists.denx.de, Jagan Teki Subject: Re: [PATCH] sunxi: Fix typo in include guard Message-ID: <20230607232227.796eb529@slackpad.lan> In-Reply-To: <20230512212214.130908-1-CFSworks@gmail.com> References: <20230512212214.130908-1-CFSworks@gmail.com> Organization: Arm Ltd. X-Mailer: Claws Mail 4.1.1 (GTK 3.24.31; x86_64-slackware-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean On Fri, 12 May 2023 15:22:14 -0600 Sam Edwards wrote: > Signed-off-by: Sam Edwards Applied to sunxi/master. Thanks, Andre > --- > arch/arm/include/asm/arch-sunxi/pmic_bus.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/include/asm/arch-sunxi/pmic_bus.h b/arch/arm/include/asm/arch-sunxi/pmic_bus.h > index 3ccfe138f3..5ab9b2809f 100644 > --- a/arch/arm/include/asm/arch-sunxi/pmic_bus.h > +++ b/arch/arm/include/asm/arch-sunxi/pmic_bus.h > @@ -6,7 +6,7 @@ > */ > > #ifndef _SUNXI_PMIC_BUS_H > -#define _SUNXI_PMIS_BUS_H > +#define _SUNXI_PMIC_BUS_H > > int pmic_bus_init(void); > int pmic_bus_read(u8 reg, u8 *data);