projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f0163a
)
Driver core: Fix missing whitespace in function argument
author
Florin Papa
<florin.papa192@gmail.com>
Sun, 8 Mar 2015 10:24:05 +0000
(12:24 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 25 Mar 2015 13:35:08 +0000
(14:35 +0100)
Found this using checkpatch.pl.
Signed-off-by: Florin Papa <florin.papa192@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/property.c
patch
|
blob
|
history
diff --git
a/drivers/base/property.c
b/drivers/base/property.c
index c45845874d4fe9258eccd74e603dc94e851f8175..423df593f262b1e0defaa087599781dad8ee4b8a 100644
(file)
--- 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);