Bug 188581 - Function wm831x_fll_is_prepared() returns an improper value
Summary: Function wm831x_fll_is_prepared() returns an improper value
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-25 10:38 UTC by bianpan
Modified: 2016-11-25 10:38 UTC (History)
0 users

See Also:
Kernel Version: linux-4.9-rc6
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description bianpan 2016-11-25 10:38:33 UTC
In function wm831x_fll_is_prepared() defined in file drivers/clk/clk-wm831x.c, it returns true (at line 82) when the call to wm831x_reg_read() (at line 78) fails. I am not sure whether it is a bug. From the name of the function, I guess "true" indicates that the wm831x_clkout is already prepared. So, when wm831x_reg_read() fails, returns "true" seems improper. Related codes are shown as follows.

wm831x_fll_is_prepared @@ drivers/clk/clk-wm831x.c
 71 static int wm831x_fll_is_prepared(struct clk_hw *hw)
 72 {
 73     struct wm831x_clk *clkdata = container_of(hw, struct wm831x_clk,
 74                           fll_hw);
 75     struct wm831x *wm831x = clkdata->wm831x;
 76     int ret;
 77 
 78     ret = wm831x_reg_read(wm831x, WM831X_FLL_CONTROL_1);
 79     if (ret < 0) {
 80         dev_err(wm831x->dev, "Unable to read FLL_CONTROL_1: %d\n",
 81             ret);
 82         return true; // Bug: seems improper
 83     }
 84 
 85     return (ret & WM831X_FLL_ENA) != 0;
 86 }

Thanks very much!

Note You need to log in before you can comment on or make changes to this bug.