From patchwork Wed Jan 27 02:20:53 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 12048763 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.0 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 CD357C433E0 for ; Wed, 27 Jan 2021 02:22:22 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (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 5C615206B9 for ; Wed, 27 Jan 2021 02:22:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5C615206B9 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To:From: Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender :Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=UyOR0JC8iwPIiQ4xLprdZSBncRh8lvt6OoLLa//kbZ4=; b=iPJxGq4KK5vdmKzyfMAX3HI853 LlV5pavMFSN+sskyteb2XD4fHpzwTta8ZvPh4uhH5BWryL37ga/0ndRtt1VYPyDJabVmA6MHSeyRs veNXl/8Ys4/YPkvpjfiSuHWJZV6y7EZRk+4Ijuh/O4ncN1JWnAwxVsQ/qIaV9/Z0wmK7K5zG+S7kX MzEpK1WPgIoUbR+nKQenrAMiDWrD2zjeUmtL5Vca1sAxJUzF48yQ0LQpUH8E+GCPTqp69nRKtt0qV u483t63b0JQetGzKQxn67iMtHXhxGJ/5CCVnjSDEvb5YOIr8UGldTKprxTgSlQI/wWgl94hYYPa0H 25xn3obQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1l4aS5-0002PL-5V; Wed, 27 Jan 2021 02:21:01 +0000 Received: from [2601:1c0:6280:3f0::7650] (helo=merlin.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1l4aS3-0002P2-7s; Wed, 27 Jan 2021 02:20:59 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH RESEND] arm: unwind.h: fix duplicated word Date: Tue, 26 Jan 2021 18:20:53 -0800 Message-Id: <20210127022053.25517-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Randy Dunlap , Russell King , linux-arm-kernel@lists.infradead.org Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Change the repeated words "the" to "to the". Signed-off-by: Randy Dunlap Cc: Russell King Cc: linux-arm-kernel@lists.infradead.org --- arch/arm/include/asm/unwind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200720.orig/arch/arm/include/asm/unwind.h +++ linux-next-20200720/arch/arm/include/asm/unwind.h @@ -10,7 +10,7 @@ #ifndef __ASSEMBLY__ -/* Unwind reason code according the the ARM EABI documents */ +/* Unwind reason code according to the ARM EABI documents */ enum unwind_reason_code { URC_OK = 0, /* operation completed successfully */ URC_CONTINUE_UNWIND = 8,