diff options
author | Maciej W. Rozycki <macro@orcam.me.uk> | 2022-03-31 09:11:14 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2022-04-10 12:48:15 +0200 |
commit | c25f23459c117d950e657458b0d3dcaaf9039ec9 (patch) | |
tree | 62465a743a7c920c90fd97a872466e53a24f10ff /arch/x86/pci/irq.c | |
parent | x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation (diff) | |
download | linux-c25f23459c117d950e657458b0d3dcaaf9039ec9.tar.xz linux-c25f23459c117d950e657458b0d3dcaaf9039ec9.zip |
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 <macro@orcam.me.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/alpine.DEB.2.21.2203310017260.44113@angie.orcam.me.uk
Diffstat (limited to 'arch/x86/pci/irq.c')
-rw-r--r-- | arch/x86/pci/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ceac715bbdc4..a498b847d740 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 || |