diff options
author | Frank Rowand <frank.rowand@sony.com> | 2017-06-21 01:38:28 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2017-06-22 18:14:48 +0200 |
commit | 92af08990cc49408119ca2549dfe9e37235864d8 (patch) | |
tree | 5f76c72112a503485481c5b87f1839e36f5a96ad /drivers/of | |
parent | dt-bindings: display-timing.txt convert non-ascii characters to ascii (diff) | |
download | linux-92af08990cc49408119ca2549dfe9e37235864d8.tar.xz linux-92af08990cc49408119ca2549dfe9e37235864d8.zip |
of: make of_fdt_is_compatible() static
The callers of of_fdt_is_compatible() are all in fdt.c so
make it static.
Signed-off-by: Frank Rowand <frank.rowand@sony.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 3080d9dd031d..5c71cb933426 100644 --- a/drivers/of/fdt.c +++ b/drivers/of/fdt.c @@ -91,7 +91,7 @@ void of_fdt_limit_memory(int limit) * On match, returns a non-zero value with smaller values returned for more * specific compatible values. */ -int of_fdt_is_compatible(const void *blob, +static int of_fdt_is_compatible(const void *blob, unsigned long node, const char *compat) { const char *cp; |