Skip to content

Commit

Permalink
of: property: Minor code formatting/style clean ups
Browse files Browse the repository at this point in the history
Better variable and function names. Remove "," after the sentinel in an
array initialization list.

Signed-off-by: Saravana Kannan <saravanak@google.com>
Acked-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20191011191521.179614-2-saravanak@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Saravana Kannan authored and Greg Kroah-Hartman committed Oct 17, 2019
1 parent 0864c40 commit af1b967
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/of/property.c
Original file line number Diff line number Diff line change
Expand Up @@ -1147,11 +1147,11 @@ struct supplier_bindings {
const char *prop_name, int index);
};

static const struct supplier_bindings bindings[] = {
static const struct supplier_bindings of_supplier_bindings[] = {
{ .parse_prop = parse_clocks, },
{ .parse_prop = parse_interconnects, },
{ .parse_prop = parse_regulators, },
{},
{}
};

/**
Expand All @@ -1177,7 +1177,7 @@ static int of_link_property(struct device *dev, struct device_node *con_np,
const char *prop_name)
{
struct device_node *phandle;
const struct supplier_bindings *s = bindings;
const struct supplier_bindings *s = of_supplier_bindings;
unsigned int i = 0;
bool matched = false;
int ret = 0;
Expand All @@ -1196,7 +1196,7 @@ static int of_link_property(struct device *dev, struct device_node *con_np,
return ret;
}

static int __of_link_to_suppliers(struct device *dev,
static int of_link_to_suppliers(struct device *dev,
struct device_node *con_np)
{
struct device_node *child;
Expand All @@ -1208,7 +1208,7 @@ static int __of_link_to_suppliers(struct device *dev,
ret = -EAGAIN;

for_each_child_of_node(con_np, child)
if (__of_link_to_suppliers(dev, child))
if (of_link_to_suppliers(dev, child))
ret = -EAGAIN;

return ret;
Expand All @@ -1226,7 +1226,7 @@ static int of_fwnode_add_links(const struct fwnode_handle *fwnode,
if (unlikely(!is_of_node(fwnode)))
return 0;

return __of_link_to_suppliers(dev, to_of_node(fwnode));
return of_link_to_suppliers(dev, to_of_node(fwnode));
}

const struct fwnode_operations of_fwnode_ops = {
Expand Down

0 comments on commit af1b967

Please sign in to comment.