From: Maciej W. Rozycki Date: Thu, 31 Mar 2022 07:11:14 +0000 (+0100) Subject: x86/PCI: Fix coding style in PIRQ table verification X-Git-Tag: v5.19-rc1~235^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c25f23459c117d950e657458b0d3dcaaf9039ec9;p=thirdparty%2Fkernel%2Flinux.git 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.orcam.me.uk --- diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ceac715bbdc47..a498b847d7403 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_routing_table(u8 *addr, int i; u8 sum; - rt = (struct irq_routing_table *) addr; + rt = (struct irq_routing_table *)addr; if (rt->signature != PIRQ_SIGNATURE || rt->version != PIRQ_VERSION || rt->size % 16 ||