From: Kim, Milo Date: Wed, 12 Sep 2012 12:16:03 +0000 (+0800) Subject: leds-lp5523: Fix riskiness of the page fault X-Git-Tag: v3.7-rc1~60^2~3 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f162584232e1b7eb05647abb1f109cbe91543ac8;p=~emulex%2Finfiniband.git leds-lp5523: Fix riskiness of the page fault The last attribute should be terminated as NULL because any member of attribute structure is accessed while adding the sysfs file. If not, invalid address may cause the page fault problem. Signed-off-by: Milo(Woogyom) Kim Signed-off-by: Bryan Wu --- diff --git a/drivers/leds/leds-lp5523.c b/drivers/leds/leds-lp5523.c index 5ebdc9245d5..97994ffdc01 100644 --- a/drivers/leds/leds-lp5523.c +++ b/drivers/leds/leds-lp5523.c @@ -759,6 +759,7 @@ static struct attribute *lp5523_attributes[] = { &dev_attr_engine2_leds.attr, &dev_attr_engine3_load.attr, &dev_attr_engine3_leds.attr, + NULL, }; static const struct attribute_group lp5523_group = {