Commit 226012f5 authored by Rolf Eike Beer's avatar Rolf Eike Beer Committed by Deepak Saxena

[PATCH] Compaq PCI Hotplug: fix missing braces

Fix missing braces. It does not change the code but makes it easier to read.
parent e1cc67ed
......@@ -2507,7 +2507,7 @@ static int configure_new_function(struct controller *ctrl, struct pci_func *func
/* find range of busses to use */
dbg("find ranges of buses to use\n");
bus_node = get_max_resource(&resources->bus_head, 1);
bus_node = get_max_resource(&(resources->bus_head), 1);
/* If we don't have any busses to allocate, we can't continue */
if (!bus_node)
......
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