* [PATCH] acpi: 80 char overflow
@ 2011-06-19 23:51 Jon Mason
2011-07-14 4:14 ` Len Brown
0 siblings, 1 reply; 2+ messages in thread
From: Jon Mason @ 2011-06-19 23:51 UTC (permalink / raw)
To: Len Brown; +Cc: linux-acpi, trivial
Trivial fix for 80 char line overflow in drivers/acpi/pci_root.c
Signed-off-by: Jon Mason <jdmason@kudzu.us>
---
drivers/acpi/pci_root.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
index d06078d..2672c79 100644
--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -485,7 +485,8 @@ static int __devinit acpi_pci_root_add(struct acpi_device *device)
root->secondary.end = 0xFF;
printk(KERN_WARNING FW_BUG PREFIX
"no secondary bus range in _CRS\n");
- status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
+ status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN,
+ NULL, &bus);
if (ACPI_SUCCESS(status))
root->secondary.start = bus;
else if (status == AE_NOT_FOUND)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] acpi: 80 char overflow
2011-06-19 23:51 [PATCH] acpi: 80 char overflow Jon Mason
@ 2011-07-14 4:14 ` Len Brown
0 siblings, 0 replies; 2+ messages in thread
From: Len Brown @ 2011-07-14 4:14 UTC (permalink / raw)
To: Jon Mason; +Cc: linux-acpi, trivial
applied.
it is spelled "ACPI", BTW:-)
thanks,
Len Brown, Intel Open Source Technology Center
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-07-14 4:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-19 23:51 [PATCH] acpi: 80 char overflow Jon Mason
2011-07-14 4:14 ` Len Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox