We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6da6c0d commit dd73e72Copy full SHA for dd73e72
drivers/acpi/reboot.c
@@ -8,8 +8,8 @@ void acpi_reboot(void)
8
{
9
struct acpi_generic_address *rr;
10
struct pci_bus *bus0;
11
- u8 reset_value;
12
unsigned int devfn;
+ u8 reset_value;
13
14
if (acpi_disabled)
15
return;
@@ -40,7 +40,7 @@ void acpi_reboot(void)
40
/* Form PCI device/function pair. */
41
devfn = PCI_DEVFN((rr->address >> 32) & 0xffff,
42
(rr->address >> 16) & 0xffff);
43
- printk(KERN_DEBUG "Resetting with ACPI PCI RESET_REG.");
+ printk(KERN_DEBUG "Resetting with ACPI PCI RESET_REG.\n");
44
/* Write the value that resets us. */
45
pci_bus_write_config_byte(bus0, devfn,
46
(rr->address & 0xffff), reset_value);
0 commit comments