File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ EXPORT_SYMBOL(acpi_disabled);
45
45
#define PREFIX "ACPI: "
46
46
47
47
int acpi_noirq ; /* skip ACPI IRQ initialization */
48
- int acpi_nobgrt ; /* skip ACPI BGRT */
48
+ static int acpi_nobgrt ; /* skip ACPI BGRT */
49
49
int acpi_pci_disabled ; /* skip ACPI PCI scan and IRQ initialization */
50
50
EXPORT_SYMBOL (acpi_pci_disabled );
51
51
Original file line number Diff line number Diff line change @@ -1589,8 +1589,8 @@ static int acpi_ec_add(struct acpi_device *device)
1589
1589
strcpy (acpi_device_name (device ), ACPI_EC_DEVICE_NAME );
1590
1590
strcpy (acpi_device_class (device ), ACPI_EC_CLASS );
1591
1591
1592
- if (( boot_ec && boot_ec -> handle == device -> handle ) ||
1593
- !strcmp (acpi_device_hid (device ), ACPI_ECDT_HID )) {
1592
+ if (boot_ec && ( boot_ec -> handle == device -> handle ||
1593
+ !strcmp (acpi_device_hid (device ), ACPI_ECDT_HID ))) {
1594
1594
/* Fast path: this device corresponds to the boot EC. */
1595
1595
ec = boot_ec ;
1596
1596
} else {
You can’t perform that action at this time.
0 commit comments