diff mbox series

x86/acpi/boot: "foo * bar" should be "foo *bar"

Message ID 687638423c7d6f729c26b6dceca4520e@208suo.com
State New
Headers show
Series x86/acpi/boot: "foo * bar" should be "foo *bar" | expand

Commit Message

sunran001@208suo.com July 21, 2023, 8:16 a.m. UTC
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Ran Sun <sunran001@208suo.com>
---
  arch/x86/kernel/acpi/boot.c | 12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)

  {
  	struct acpi_madt_local_apic *processor = NULL;

@@ -307,7 +307,7 @@ acpi_parse_sapic(union acpi_subtable_headers 
*header, const unsigned long end)
  }

  static int __init
-acpi_parse_lapic_addr_ovr(union acpi_subtable_headers * header,
+acpi_parse_lapic_addr_ovr(union acpi_subtable_headers *header,
  			  const unsigned long end)
  {
  	struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
@@ -344,7 +344,7 @@ acpi_parse_x2apic_nmi(union acpi_subtable_headers 
*header,
  }

  static int __init
-acpi_parse_lapic_nmi(union acpi_subtable_headers * header, const 
unsigned long end)
+acpi_parse_lapic_nmi(union acpi_subtable_headers *header, const 
unsigned long end)
  {
  	struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;

@@ -517,7 +517,7 @@ static int __init mp_register_ioapic_irq(u8 bus_irq, 
u8 polarity,
  }

  static int __init
-acpi_parse_ioapic(union acpi_subtable_headers * header, const unsigned 
long end)
+acpi_parse_ioapic(union acpi_subtable_headers *header, const unsigned 
long end)
  {
  	struct acpi_madt_io_apic *ioapic = NULL;
  	struct ioapic_domain_cfg cfg = {
@@ -576,7 +576,7 @@ static void __init acpi_sci_ioapic_setup(u8 bus_irq, 
u16 polarity, u16 trigger,
  }

  static int __init
-acpi_parse_int_src_ovr(union acpi_subtable_headers * header,
+acpi_parse_int_src_ovr(union acpi_subtable_headers *header,
  		       const unsigned long end)
  {
  	struct acpi_madt_interrupt_override *intsrc = NULL;
@@ -618,7 +618,7 @@ acpi_parse_int_src_ovr(union acpi_subtable_headers * 
header,
  }

  static int __init
-acpi_parse_nmi_src(union acpi_subtable_headers * header, const unsigned 
long end)
+acpi_parse_nmi_src(union acpi_subtable_headers *header, const unsigned 
long end)
  {
  	struct acpi_madt_nmi_source *nmi_src = NULL;
diff mbox series

Patch

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 21b542a6866c..457f1f6622d0 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -254,7 +254,7 @@  acpi_parse_x2apic(union acpi_subtable_headers 
*header, const unsigned long end)
  }

  static int __init
-acpi_parse_lapic(union acpi_subtable_headers * header, const unsigned 
long end)
+acpi_parse_lapic(union acpi_subtable_headers *header, const unsigned 
long end)