firmware: google: fix a NULL vs IS_ERR() check in cbmem_entry_probe()
The devm_memremap() function returns error pointers on error,
it doesn't return NULL.
Fixes: 19d5402088
("firmware: google: Implement cbmem in sysfs driver")
Signed-off-by: Peng Wu <wupeng58@huawei.com>
Reviewed-by: Guenter Roeck <groeck@chromium.org>
Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
Link: https://lore.kernel.org/r/20221115091138.51614-1-wupeng58@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ab760791c0
commit
fa1ba41c17
@ -106,8 +106,8 @@ static int cbmem_entry_probe(struct coreboot_device *dev)
|
||||
entry->mem_file_buf = devm_memremap(&dev->dev, dev->cbmem_entry.address,
|
||||
dev->cbmem_entry.entry_size,
|
||||
MEMREMAP_WB);
|
||||
if (!entry->mem_file_buf)
|
||||
return -ENOMEM;
|
||||
if (IS_ERR(entry->mem_file_buf))
|
||||
return PTR_ERR(entry->mem_file_buf);
|
||||
|
||||
entry->size = dev->cbmem_entry.entry_size;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user