Skip to content
Snippets Groups Projects
Commit 682c195d authored by Guido Gunther's avatar Guido Gunther :zzz: Committed by Angus Ainslie (Purism)
Browse files

dcss: Fix incorrect check


We're returning != 0 on error

Signed-off-by: default avatarGuido Günther <guido.gunther@puri.sm>
parent 57d16189
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ int dcss_ctxld_init(struct dcss_soc *dcss, unsigned long ctxld_base)
}
ret = dcss_ctxld_irq_config(priv);
if (!ret)
if (ret)
return ret;
dcss_ctxld_hw_cfg(dcss);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment