Commit 852ca616 authored by Rolf Eike Beer's avatar Rolf Eike Beer Committed by Deepak Saxena

[PATCH] ACPI PCI Hotplug: coding style fixes

Some minor coding style fixes:
-space before opening brace of function
-wrap some long lines
-change some identations from spaces to tabs
parent 51c59514
...@@ -66,7 +66,7 @@ static void handle_hotplug_event_func (acpi_handle, u32, void *); ...@@ -66,7 +66,7 @@ static void handle_hotplug_event_func (acpi_handle, u32, void *);
* 4. .. * 4. ..
* *
*/ */
static int is_ejectable (acpi_handle handle) static int is_ejectable(acpi_handle handle)
{ {
acpi_status status; acpi_status status;
acpi_handle tmp; acpi_handle tmp;
...@@ -326,10 +326,10 @@ static void decode_hpp(struct acpiphp_bridge *bridge) ...@@ -326,10 +326,10 @@ static void decode_hpp(struct acpiphp_bridge *bridge)
bridge->hpp.enable_PERR = package->package.elements[3].integer.value; bridge->hpp.enable_PERR = package->package.elements[3].integer.value;
dbg("_HPP parameter = (%02x, %02x, %02x, %02x)\n", dbg("_HPP parameter = (%02x, %02x, %02x, %02x)\n",
bridge->hpp.cache_line_size, bridge->hpp.cache_line_size,
bridge->hpp.latency_timer, bridge->hpp.latency_timer,
bridge->hpp.enable_SERR, bridge->hpp.enable_SERR,
bridge->hpp.enable_PERR); bridge->hpp.enable_PERR);
bridge->flags |= BRIDGE_HAS_HPP; bridge->flags |= BRIDGE_HAS_HPP;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment