Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media: ov7240: Fix "clk already disabled" / "already unprepared" back…
…traces On probe() the ov2740 code was manually setting the reset GPIO instead of using the power_on() helper function. This path however left out enabling the clk, which power_on() does do, so when power_off() runs after the probe() is done (on runtime suspend) then there are 2 ugly backtraces triggered by WARN()s in the clk-core. One for "clk already disabled" followed by one for "clk already unprepared". Fix this by using the power_on() helper in probe(). Signed-off-by: Hans de Goede <hdegoede@redhat.com>
- Loading branch information