summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/adp1653.c
diff options
context:
space:
mode:
authorAndy Shevchenko2011-07-25 16:16:41 +0200
committerMauro Carvalho Chehab2011-08-06 14:42:50 +0200
commit572064280ecc9dc89227cf3797bc2144896a34f5 (patch)
treee1cb5154c5ddffe7d88f5a807a9b0e8e88460917 /drivers/media/video/adp1653.c
parent[media] dib0700: correct error message (diff)
downloadkernel-qcow2-linux-572064280ecc9dc89227cf3797bc2144896a34f5.tar.gz
kernel-qcow2-linux-572064280ecc9dc89227cf3797bc2144896a34f5.tar.xz
kernel-qcow2-linux-572064280ecc9dc89227cf3797bc2144896a34f5.zip
[media] adp1653: check platform_data before usage
The driver requires platform_data to be present. That's why we need to check and fail in case of the absence of necessary data. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Mauro Carvalho Chehab <mchehab@infradead.org> Cc: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/adp1653.c')
-rw-r--r--drivers/media/video/adp1653.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/adp1653.c b/drivers/media/video/adp1653.c
index be7befd60947..8ad89ffe2cc3 100644
--- a/drivers/media/video/adp1653.c
+++ b/drivers/media/video/adp1653.c
@@ -413,6 +413,10 @@ static int adp1653_probe(struct i2c_client *client,
struct adp1653_flash *flash;
int ret;
+ /* we couldn't work without platform data */
+ if (client->dev.platform_data == NULL)
+ return -ENODEV;
+
flash = kzalloc(sizeof(*flash), GFP_KERNEL);
if (flash == NULL)
return -ENOMEM;