From: Srinivas Kandagatla Date: Tue, 7 Aug 2018 12:19:35 +0000 (+0100) Subject: nvmem: core: return error code instead of NULL from nvmem_device_get X-Git-Tag: v4.19.85~235 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88e9f8198dd5039868519f88e9bf78839643775c;p=platform%2Fkernel%2Flinux-rpi.git nvmem: core: return error code instead of NULL from nvmem_device_get [ Upstream commit ca6ac25cecf0e740d7cc8e03e0ebbf8acbeca3df ] nvmem_device_get() should return ERR_PTR() on error or valid pointer on success, but one of the code path seems to return NULL, so fix it. Reported-by: Niklas Cassel Signed-off-by: Srinivas Kandagatla Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c index d32eba1..30c0407 100644 --- a/drivers/nvmem/core.c +++ b/drivers/nvmem/core.c @@ -692,7 +692,7 @@ static struct nvmem_device *nvmem_find(const char *name) d = bus_find_device_by_name(&nvmem_bus_type, NULL, name); if (!d) - return NULL; + return ERR_PTR(-ENOENT); return to_nvmem_device(d); }