From: Jonghwan Choi Date: Tue, 26 Jul 2011 23:08:16 +0000 (-0700) Subject: drivers/base/power/opp.c: fix dev_opp initial value X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fc92805a8e25e5e2b0ba7c413cc15d9f05962ee8;p=linux-beck.git drivers/base/power/opp.c: fix dev_opp initial value Dev_opp initial value shoule be ERR_PTR(), IS_ERR() is used to check error. Signed-off-by: Jonghwan Choi Cc: "Rafael J. Wysocki" Cc: Greg KH Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c index 5cc12322ef32..b23de185cb04 100644 --- a/drivers/base/power/opp.c +++ b/drivers/base/power/opp.c @@ -453,7 +453,7 @@ int opp_add(struct device *dev, unsigned long freq, unsigned long u_volt) static int opp_set_availability(struct device *dev, unsigned long freq, bool availability_req) { - struct device_opp *tmp_dev_opp, *dev_opp = NULL; + struct device_opp *tmp_dev_opp, *dev_opp = ERR_PTR(-ENODEV); struct opp *new_opp, *tmp_opp, *opp = ERR_PTR(-ENODEV); int r = 0;