Fix wrong condition because of a wrong patch included.
Discovered-by: Ernesto Ramos Falcon <[email protected]>
Signed-off-by: Omar Ramirez Luna <[email protected]>
---
drivers/dsp/bridge/rmgr/node.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/dsp/bridge/rmgr/node.c b/drivers/dsp/bridge/rmgr/node.c
index 72c2411..e8ba0dd 100644
--- a/drivers/dsp/bridge/rmgr/node.c
+++ b/drivers/dsp/bridge/rmgr/node.c
@@ -3252,7 +3252,7 @@ DSP_STATUS NODE_GetUUIDProps(DSP_HPROCESSOR hProcessor,
pNodeId, pNodeProps);
status = PROC_GetDevObject(hProcessor, &hDevObject);
- if (!hDevObject) {
+ if (hDevObject) {
status = DEV_GetNodeManager(hDevObject, &hNodeMgr);
if (hNodeMgr == NULL) {
status = DSP_EHANDLE;
--
1.6.2.4
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html