char: xilinx_hwicap: Fix NULL vs IS_ERR() bug
BugLink: https://bugs.launchpad.net/bugs/2060097
[ Upstream commit 316459ba4051fd91237171fdca88920128a646f1 ]
The devm_platform_ioremap_resource() function returns error pointers.
It never returns NULL. Update the check accordingly.
Fixes: 6723718321 ("char: xilinx_hwicap: Modernize driver probe")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Acked-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/ef647a9c-b1b7-4338-9bc0-28165ec2a367@moroto.mountain
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
(cherry picked from commit 6595eae98ab5363e7aa2ef2592b6ce72231894fe)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
This commit is contained in:
committed by
Roxana Nicolescu
parent
a203636d9b
commit
b663cd4bb0
@@ -639,8 +639,8 @@ static int hwicap_setup(struct platform_device *pdev, int id,
|
||||
dev_set_drvdata(dev, (void *)drvdata);
|
||||
|
||||
drvdata->base_address = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (!drvdata->base_address) {
|
||||
retval = -ENODEV;
|
||||
if (IS_ERR(drvdata->base_address)) {
|
||||
retval = PTR_ERR(drvdata->base_address);
|
||||
goto failed;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user