Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2415471 authored by Sachin Kamat's avatar Sachin Kamat Committed by Herbert Xu
Browse files

crypto: dcp - Use NULL instead of 0



Use NULL instead of 0 for pointer variables.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Tested-by: default avatarTobias Rauter <tobiasrauter@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 0bc8a718
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -408,7 +408,7 @@ static void dcp_done_task(unsigned long data)
	ablkcipher_walk_complete(&dev->ctx->walk);
	dev->ctx->req->base.complete(&dev->ctx->req->base,
			dev->ctx->stat);
	dev->ctx->req = 0;
	dev->ctx->req = NULL;
	/* in case there are other requests in the queue */
	tasklet_schedule(&dev->queue_task);
}