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>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
5f0163a5ee
commit
7036cd46c8
@@ -365,7 +365,7 @@ int fwnode_property_read_string(struct fwnode_handle *fwnode,
|
|||||||
const char *propname, const char **val)
|
const char *propname, const char **val)
|
||||||
{
|
{
|
||||||
if (is_of_node(fwnode))
|
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))
|
else if (is_acpi_node(fwnode))
|
||||||
return acpi_dev_prop_read(acpi_node(fwnode), propname,
|
return acpi_dev_prop_read(acpi_node(fwnode), propname,
|
||||||
DEV_PROP_STRING, val, 1);
|
DEV_PROP_STRING, val, 1);
|
||||||
|
Reference in New Issue
Block a user