Tag: 814625b539d36d57cb06f412714ec31d7fcd23db

staging: goldfish: goldfish_nand: Return correct error code

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> The return value of devm_kzalloc on failure of allocation of memory should be -ENOMEM and not -1. Found using Coccinelle. A simplified version of the semantic patch used is: // @@ expression *e; @@ e = devm_kzalloc(…); if (e == NULL) { … return – -1 + -ENOMEM ; } …

Continue reading