]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ath79: spi: Remove the explicit pinctrl setting
authorWills Wang <wills.wang@live.com>
Tue, 12 Apr 2016 03:09:18 +0000 (11:09 +0800)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Fri, 20 May 2016 23:36:37 +0000 (01:36 +0200)
The correct pinctrl is handled automatically so we don't need to do it in
the driver.

Signed-off-by: Wills Wang <wills.wang@live.com>
drivers/spi/ath79_spi.c

index 0c1022da05c3ef2a0c2e9d9f3ba850ce49d025ad..b18c733b670f96b6a2263014a2fb2ce81fc4fea0 100644 (file)
@@ -175,19 +175,7 @@ static int ath79_spi_set_mode(struct udevice *bus, uint mode)
 static int ath79_spi_probe(struct udevice *bus)
 {
        struct ath79_spi_priv *priv = dev_get_priv(bus);
-       struct udevice *pinctrl;
        fdt_addr_t addr;
-       int ret;
-
-       ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
-       if (ret)
-               return ret;
-       ret = pinctrl_get_periph_id(pinctrl, bus);
-       if (ret < 0)
-               return ret;
-       ret = pinctrl_request(pinctrl, ret, 0);
-       if (ret < 0)
-               return ret;
 
        addr = dev_get_addr(bus);
        if (addr == FDT_ADDR_T_NONE)