0a037074fe43defb5ffc82954547ddd83e1cedef
[openwrt/svn-archive/archive.git] / target / linux / brcm63xx / patches-3.8 / 004-spi-bcm63xx-don-t-disable-non-enabled-clocks-in-prob.patch
1 From f32b46ec9c307753e2418a0f5df1b5cd066b1394 Mon Sep 17 00:00:00 2001
2 From: Jonas Gorski <jogo@openwrt.org>
3 Date: Mon, 11 Mar 2013 13:27:43 +0100
4 Subject: [PATCH 02/12] spi/bcm63xx: don't disable non enabled clocks in probe
5 error path
6
7 When msg_ctl_width is set to an invalid value we try to disable the
8 clock despite it never being enabled. Fix it by jumping to the correct
9 label.
10
11 Signed-off-by: Jonas Gorski <jogo@openwrt.org>
12 ---
13 drivers/spi/spi-bcm63xx.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 --- a/drivers/spi/spi-bcm63xx.c
17 +++ b/drivers/spi/spi-bcm63xx.c
18 @@ -489,7 +489,7 @@ static int bcm63xx_spi_probe(struct plat
19 default:
20 dev_err(dev, "unsupported MSG_CTL width: %d\n",
21 bs->msg_ctl_width);
22 - goto out_clk_disable;
23 + goto out_err;
24 }
25
26 /* Initialize hardware */