From: Seung-Woo Kim Date: Thu, 20 Nov 2014 08:25:03 +0000 (+0900) Subject: sensorhub: add sentinel into array to fix out-of-bound memory access X-Git-Tag: submit/tizen/20141121.110247~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15a9e0467a7ee6a9e8ecfbf4e851ea768010ab5e;p=platform%2Fkernel%2Flinux-3.10.git sensorhub: add sentinel into array to fix out-of-bound memory access Without sentinel, of_match_node() to array causes out-of-bound memory access. So this patch adds sentinel into ssp_of_match. Change-Id: I66d69b10f6e96ceb0a874554249317416c58471d Signed-off-by: Seung-Woo Kim --- diff --git a/drivers/sensorhub/stm/ssp_dev.c b/drivers/sensorhub/stm/ssp_dev.c index 249e7c3..b488219 100644 --- a/drivers/sensorhub/stm/ssp_dev.c +++ b/drivers/sensorhub/stm/ssp_dev.c @@ -670,6 +670,7 @@ static const struct dev_pm_ops ssp_pm_ops = { static struct of_device_id ssp_of_match[] = { { .compatible = "samsung,ssp-spi", }, + { }, }; static struct spi_driver ssp_driver = {