From: Hans-Frieder Vogt Date: Sun, 6 Oct 2013 19:13:35 +0000 (+0200) Subject: w1 - fix fops in w1_bus_notify X-Git-Tag: upstream/snapshot3+hdmi~4138^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2962aecef2878e2192ac9676700469678507c24d;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git w1 - fix fops in w1_bus_notify Introduce a check to make sure that fops are only called if they have been defined by the slave module. Without this check modules like w1_smem cause a NULL pointer dereference bug. Signed-off by: Hans-Frieder Vogt Acked-by: Evgeniy Polyakov Cc: stable # 3.11+ Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c index c7c64f1..0781217 100644 --- a/drivers/w1/w1.c +++ b/drivers/w1/w1.c @@ -613,6 +613,9 @@ static int w1_bus_notify(struct notifier_block *nb, unsigned long action, sl = dev_to_w1_slave(dev); fops = sl->family->fops; + if (!fops) + return 0; + switch (action) { case BUS_NOTIFY_ADD_DEVICE: /* if the family driver needs to initialize something... */