Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clk fix from Stephen Boyd:
"One hotfix for a NULL pointer deref in the Renesas usb clk driver"

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: renesas: rcar-usb2-clock-sel: Fix kernel NULL pointer dereference

+1 -1
+1 -1
drivers/clk/renesas/rcar-usb2-clock-sel.c
··· 187 187 init.ops = &usb2_clock_sel_clock_ops; 188 188 priv->hw.init = &init; 189 189 190 - ret = devm_clk_hw_register(NULL, &priv->hw); 190 + ret = devm_clk_hw_register(dev, &priv->hw); 191 191 if (ret) 192 192 goto pm_put; 193 193