kernel: bump 4.14 to 4.14.155
[oweals/openwrt.git] / target / linux / ipq806x / patches-4.14 / 0048-PM-OPP-HACK-Allow-to-set-regulator-without-opp_list.patch
1 From 5c294df1715d673f94f3b0a6e1ea3a426ca35e6e Mon Sep 17 00:00:00 2001
2 From: Georgi Djakov <georgi.djakov@linaro.org>
3 Date: Thu, 28 Apr 2016 16:20:12 +0300
4 Subject: [PATCH 48/69] PM / OPP: HACK: Allow to set regulator without opp_list
5
6 Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
7 ---
8  drivers/base/power/opp/core.c | 3 ++-
9  1 file changed, 2 insertions(+), 1 deletion(-)
10
11 --- a/drivers/base/power/opp/core.c
12 +++ b/drivers/base/power/opp/core.c
13 @@ -1292,11 +1292,13 @@ struct opp_table *dev_pm_opp_set_regulat
14         if (!opp_table)
15                 return ERR_PTR(-ENOMEM);
16  
17 +#if 0
18         /* This should be called before OPPs are initialized */
19         if (WARN_ON(!list_empty(&opp_table->opp_list))) {
20                 ret = -EBUSY;
21                 goto err;
22         }
23 +#endif
24  
25         /* Already have regulators set */
26         if (opp_table->regulators) {