summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2014-01-14 07:52:15 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-01-14 07:52:15 +0000
commita97c6fecdbe576b732a2ca00fbf4dcb82f079c8f (patch)
tree413be84d435da10b3fe71073fdbc6a538d805f7b
parente0c252ae43490cc324b89f6d7cbaa33af8ff341d (diff)
parentf7d761ca34578d662d87bc1f883f6eacad86bf51 (diff)
downloadlibhardware-a97c6fecdbe576b732a2ca00fbf4dcb82f079c8f.tar.gz
Merge "hardware: fix check for ro.hardware.<class> property"
-rw-r--r--hardware.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hardware.c b/hardware.c
index da89dd9c..f835fdac 100644
--- a/hardware.c
+++ b/hardware.c
@@ -160,7 +160,7 @@ int hw_get_module_by_class(const char *class_id, const char *inst,
/* First try a property specific to the class and possibly instance */
snprintf(prop_name, sizeof(prop_name), "ro.hardware.%s", name);
- if (property_get(prop_name, prop, NULL) == 0) {
+ if (property_get(prop_name, prop, NULL) > 0) {
if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
goto found;
}