diff options
author | Florin Papa <florin.papa192@gmail.com> | 2015-03-08 12:24:05 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-25 14:35:08 +0100 |
commit | 7036cd46c8239a520abf69720de9a8538a9011d5 (patch) | |
tree | c330b75a38ed2f728a8bfa7ce35d9fae7289d142 /drivers/base/property.c | |
parent | 5f0163a5ee9cc7c59751768bdfd94a73186debba (diff) | |
download | op-kernel-dev-7036cd46c8239a520abf69720de9a8538a9011d5.zip op-kernel-dev-7036cd46c8239a520abf69720de9a8538a9011d5.tar.gz |
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>
Diffstat (limited to 'drivers/base/property.c')
-rw-r--r-- | drivers/base/property.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/property.c b/drivers/base/property.c index c458458..423df59 100644 --- a/drivers/base/property.c +++ b/drivers/base/property.c @@ -365,7 +365,7 @@ int fwnode_property_read_string(struct fwnode_handle *fwnode, const char *propname, const char **val) { if (is_of_node(fwnode)) - return of_property_read_string(of_node(fwnode),propname, val); + return of_property_read_string(of_node(fwnode), propname, val); else if (is_acpi_node(fwnode)) return acpi_dev_prop_read(acpi_node(fwnode), propname, DEV_PROP_STRING, val, 1); |