From nobody Fri Jun 19 00:56:33 2026 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2B105C433EF for ; Sun, 10 Apr 2022 10:54:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238104AbiDJK4t (ORCPT ); Sun, 10 Apr 2022 06:56:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35596 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234714AbiDJK4k (ORCPT ); Sun, 10 Apr 2022 06:56:40 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 681061B787; Sun, 10 Apr 2022 03:54:28 -0700 (PDT) Date: Sun, 10 Apr 2022 10:54:25 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1649588067; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=xctoUVYOaFhI2BODTogS4vA+LSWTcmrCe3hEFPVM0DE=; b=EB8ZsaacQMsCl364EyLW2YoJsW3I+C9vWYw+q7RhnAWa9BZ+tUf3sv4xeODIU+Sn1fkSLP Tc9FjaOT4dNEPbJ82ZeK9+PypvJPJCr6NONUx9idcvZwoE3nO8azBtqC8oFb626iu63Ma6 51+PIcOVn/uQBuvIeK29HoDQqGGvvqLRFfYH/eoTY/I9k8L2dcncs1VwXIMegqYmFI2nSs 84e28Bhrwh86QATcgUZh+AwuHvCToeQT0xc+ahkOtAAx6xISltqiRSNuSK0PlqjmQ4mO3f tVyaFam/0xPFacAAJF249lSePs+6clthFRmOsZc7nb/UCihmGCT+ubt2cUXQiw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1649588067; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=xctoUVYOaFhI2BODTogS4vA+LSWTcmrCe3hEFPVM0DE=; b=LVua1YcivD8GA7tHNef9KMP9CSegB5voGij+7H1EigtaIKIzgSfbJSg7trnptKbGuRkFJi I74F/IqhZ8+xhvDw== From: "tip-bot2 for Maciej W. Rozycki" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: x86/irq] x86/PCI: Fix coding style in PIRQ table verification Cc: "Maciej W. Rozycki" , Thomas Gleixner , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: References: MIME-Version: 1.0 Message-ID: <164958806582.4207.2252840474773326464.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the x86/irq branch of tip: Commit-ID: c25f23459c117d950e657458b0d3dcaaf9039ec9 Gitweb: https://git.kernel.org/tip/c25f23459c117d950e657458b0d3dcaaf= 9039ec9 Author: Maciej W. Rozycki AuthorDate: Thu, 31 Mar 2022 08:11:14 +01:00 Committer: Thomas Gleixner CommitterDate: Sun, 10 Apr 2022 12:48:15 +02:00 x86/PCI: Fix coding style in PIRQ table verification Remove an extraneous space with a cast in `pirq_check_routing_table'. Signed-off-by: Maciej W. Rozycki Signed-off-by: Thomas Gleixner Link: https://lore.kernel.org/r/alpine.DEB.2.21.2203310017260.44113@angie.o= rcam.me.uk --- arch/x86/pci/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ceac715..a498b84 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c @@ -77,7 +77,7 @@ static inline struct irq_routing_table *pirq_check_routin= g_table(u8 *addr, int i; u8 sum; =20 - rt =3D (struct irq_routing_table *) addr; + rt =3D (struct irq_routing_table *)addr; if (rt->signature !=3D PIRQ_SIGNATURE || rt->version !=3D PIRQ_VERSION || rt->size % 16 ||