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

[PATCH] RPA PCI Hotplug: codingstyle fixes for rpaphp_core.c

Some coding style fixes for rpaphp_core.c:
-s/return(foo)/return foo/
-some whitespace fixes
-document function in proper way

Eike
parent f6458739
...@@ -231,24 +231,24 @@ static int is_php_dn(struct device_node *dn, int **indexes, int **names, int **t ...@@ -231,24 +231,24 @@ static int is_php_dn(struct device_node *dn, int **indexes, int **names, int **t
{ {
*indexes = (int *) get_property(dn, "ibm,drc-indexes", NULL); *indexes = (int *) get_property(dn, "ibm,drc-indexes", NULL);
if (!*indexes) if (!*indexes)
return (0); return 0;
/* &names[1] contains NULL terminated slot names */ /* &names[1] contains NULL terminated slot names */
*names = (int *) get_property(dn, "ibm,drc-names", NULL); *names = (int *) get_property(dn, "ibm,drc-names", NULL);
if (!*names) if (!*names)
return (0); return 0;
/* &types[1] contains NULL terminated slot types */ /* &types[1] contains NULL terminated slot types */
*types = (int *) get_property(dn, "ibm,drc-types", NULL); *types = (int *) get_property(dn, "ibm,drc-types", NULL);
if (!*types) if (!*types)
return (0); return 0;
/* power_domains[1...n] are the slot power domains */ /* power_domains[1...n] are the slot power domains */
*power_domains = (int *) get_property(dn, *power_domains = (int *) get_property(dn,
"ibm,drc-power-domains", NULL); "ibm,drc-power-domains", NULL);
if (!*power_domains) if (!*power_domains)
return (0); return 0;
if (strcmp(dn->name, "pci") == 0 && if (strcmp(dn->name, "pci") == 0 &&
!get_property(dn, "ibm,fw-pci-hot-plug-ctrl", NULL)) !get_property(dn, "ibm,fw-pci-hot-plug-ctrl", NULL))
return (0); return 0;
return (1); return 1;
} }
static inline int is_vdevice_root(struct device_node *dn) static inline int is_vdevice_root(struct device_node *dn)
...@@ -256,10 +256,10 @@ static inline int is_vdevice_root(struct device_node *dn) ...@@ -256,10 +256,10 @@ static inline int is_vdevice_root(struct device_node *dn)
return !strcmp(dn->name, "vdevice"); return !strcmp(dn->name, "vdevice");
} }
/************************************* /**
* Add Hot Plug slot(s) to sysfs * rpaphp_add_slot: Add Hot Plug slot(s) to sysfs
* *
************************************/ */
int rpaphp_add_slot(struct device_node *dn) int rpaphp_add_slot(struct device_node *dn)
{ {
struct slot *slot; struct slot *slot;
...@@ -284,7 +284,8 @@ int rpaphp_add_slot(struct device_node *dn) ...@@ -284,7 +284,8 @@ int rpaphp_add_slot(struct device_node *dn)
type = (char *) &types[1]; type = (char *) &types[1];
for (i = 0; i < indexes[0]; for (i = 0; i < indexes[0];
i++, i++,
name += (strlen(name) + 1), type += (strlen(type) + 1)) { name += (strlen(name) + 1),
type += (strlen(type) + 1)) {
if (!(slot = alloc_slot_struct(dn, indexes[i + 1], name, if (!(slot = alloc_slot_struct(dn, indexes[i + 1], name,
power_domains[i + 1]))) { power_domains[i + 1]))) {
retval = -ENOMEM; retval = -ENOMEM;
...@@ -297,7 +298,7 @@ int rpaphp_add_slot(struct device_node *dn) ...@@ -297,7 +298,7 @@ int rpaphp_add_slot(struct device_node *dn)
} /* for indexes */ } /* for indexes */
} /* end of PCI device_node */ } /* end of PCI device_node */
exit: exit:
dbg("%s - Exit: num_slots=%d rc[%d]\n", dbg("%s - Exit: num_slots=%d rc[%d]\n",
__FUNCTION__, num_slots, retval); __FUNCTION__, num_slots, retval);
return retval; return retval;
......
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