aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorin Papa <florin.papa192@gmail.com>2015-03-08 06:24:05 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-25 09:35:08 -0400
commit7036cd46c8239a520abf69720de9a8538a9011d5 (patch)
treec330b75a38ed2f728a8bfa7ce35d9fae7289d142
parent5f0163a5ee9cc7c59751768bdfd94a73186debba (diff)
Driver core: Fix missing whitespace in function argument
Found this using checkpatch.pl. Signed-off-by: Florin Papa <florin.papa192@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/base/property.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/property.c b/drivers/base/property.c
index c45845874d4f..423df593f262 100644
--- a/drivers/base/property.c
+++ b/drivers/base/property.c
@@ -365,7 +365,7 @@ int fwnode_property_read_string(struct fwnode_handle *fwnode,
365 const char *propname, const char **val) 365 const char *propname, const char **val)
366{ 366{
367 if (is_of_node(fwnode)) 367 if (is_of_node(fwnode))
368 return of_property_read_string(of_node(fwnode),propname, val); 368 return of_property_read_string(of_node(fwnode), propname, val);
369 else if (is_acpi_node(fwnode)) 369 else if (is_acpi_node(fwnode))
370 return acpi_dev_prop_read(acpi_node(fwnode), propname, 370 return acpi_dev_prop_read(acpi_node(fwnode), propname,
371 DEV_PROP_STRING, val, 1); 371 DEV_PROP_STRING, val, 1);