Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1395277

[PATCH] of: fix device compatibility scoring

From Reza Arbab <arbab@linux.vnet.ibm.com>
Newsgroups linux.kernel
Subject [PATCH] of: fix device compatibility scoring
Date 2016-05-05 20:40 +0200
Message-ID <rvwlQ-5gq-19@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


If a constraint given to __of_device_is_compatible() does not
match, we should just move to the next constraint without adding
to the compatibility score. Instead, the function immediately
returns 0.

Do not return from __of_device_is_compatible() until a complete
score has been calculated.

Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com>
---
 drivers/of/base.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/of/base.c b/drivers/of/base.c
index 017dd94..942a60e 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -455,22 +455,18 @@ static int __of_device_is_compatible(const struct device_node *device,
 				break;
 			}
 		}
-		if (!score)
-			return 0;
 	}
 
 	/* Matching type is better than matching name */
 	if (type && type[0]) {
-		if (!device->type || of_node_cmp(type, device->type))
-			return 0;
-		score += 2;
+		if (device->type && !of_node_cmp(type, device->type))
+			score += 2;
 	}
 
 	/* Matching name is a bit better than not */
 	if (name && name[0]) {
-		if (!device->name || of_node_cmp(name, device->name))
-			return 0;
-		score++;
+		if (device->name && !of_node_cmp(name, device->name))
+			score++;
 	}
 
 	return score;
-- 
1.8.3.1

Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread


Thread

[PATCH] of: fix device compatibility scoring Reza Arbab <arbab@linux.vnet.ibm.com> - 2016-05-05 20:40 +0200
  Re: [PATCH] of: fix device compatibility scoring Rob Herring <robh+dt@kernel.org> - 2016-05-05 21:50 +0200
    Re: [PATCH] of: fix device compatibility scoring Reza Arbab <arbab@linux.vnet.ibm.com> - 2016-05-06 17:20 +0200

csiph-web