This is a note to let you know that I've just added the patch titled clk: wm831x: Initialise wm831x pointer on init to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: clk-wm831x-initialise-wm831x-pointer-on-init.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 08442ce993deeb15a070c14cc3f3459e87d111e0 Mon Sep 17 00:00:00 2001 From: Mark Brown <broonie@xxxxxxxxxx> Date: Thu, 29 Aug 2013 12:21:01 +0100 Subject: clk: wm831x: Initialise wm831x pointer on init From: Mark Brown <broonie@xxxxxxxxxx> commit 08442ce993deeb15a070c14cc3f3459e87d111e0 upstream. Otherwise any attempt to interact with the hardware will crash. This is what happens when drivers get written blind. Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> Signed-off-by: Mike Turquette <mturquette@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/clk/clk-wm831x.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/clk/clk-wm831x.c +++ b/drivers/clk/clk-wm831x.c @@ -360,6 +360,8 @@ static int wm831x_clk_probe(struct platf if (!clkdata) return -ENOMEM; + clkdata->wm831x = wm831x; + /* XTAL_ENA can only be set via OTP/InstantConfig so just read once */ ret = wm831x_reg_read(wm831x, WM831X_CLOCK_CONTROL_2); if (ret < 0) { Patches currently in stable-queue which might be from broonie@xxxxxxxxxx are queue-3.10/asoc-mc13783-add-spi-errata-fix.patch queue-3.10/leds-wm831x-status-request-a-reg-resource.patch queue-3.10/asoc-wm8960-fix-pll-register-writes.patch queue-3.10/clk-wm831x-initialise-wm831x-pointer-on-init.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html