summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeordan Neukum <gneukum1@gmail.com>2019-05-26 01:18:32 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-05-30 14:04:26 -0700
commit4ff740315aee92ec19add0193cef976e532e34dc (patch)
treedcc445beb48c2a76d62d9e8f933159aa357364b2
parent091971897e84b518cc8902af1c70632930b1d2da (diff)
downloadlinux-stable-4ff740315aee92ec19add0193cef976e532e34dc.tar.gz
linux-stable-4ff740315aee92ec19add0193cef976e532e34dc.tar.bz2
linux-stable-4ff740315aee92ec19add0193cef976e532e34dc.zip
staging: kpc2000: kpc_i2c: fail probe if unable to get I/O resource
The kpc_i2c driver attempts to map its I/O space without verifying whether or not the result of platform_get_resource() is NULL. Make the driver check that platform_get_resource did not return NULL before attempting to use the value returned to map an I/O space. Signed-off-by: Geordan Neukum <gneukum1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/kpc2000/kpc2000_i2c.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/staging/kpc2000/kpc2000_i2c.c b/drivers/staging/kpc2000/kpc2000_i2c.c
index e4bbb91af972..452052bf9476 100644
--- a/drivers/staging/kpc2000/kpc2000_i2c.c
+++ b/drivers/staging/kpc2000/kpc2000_i2c.c
@@ -587,6 +587,9 @@ static int pi2c_probe(struct platform_device *pldev)
priv->adapter.algo = &smbus_algorithm;
res = platform_get_resource(pldev, IORESOURCE_MEM, 0);
+ if (!res)
+ return -ENXIO;
+
priv->smba = (unsigned long)ioremap_nocache(res->start, resource_size(res));
platform_set_drvdata(pldev, priv);