On Wed, Oct 19, 2016 at 1:09 PM, William Hermans <[email protected]> wrote:
> Thanks Robert,
>
> I'll check that out, So when you sasy "remove the sleeps". I just delete
> "sleep" from pinctrl-names = "default", "sleep"; or do I need to also remove
> pinctrl-1 = <&cpsw_sleep>; as well ?


Yeah, from:

&mac {
    pinctrl-names = "default", "sleep";
    pinctrl-0 = <&cpsw_default>;
    pinctrl-1 = <&cpsw_sleep>;
    slaves = <1>;
    status = "okay";
};

&davinci_mdio {
    pinctrl-names = "default", "sleep";
    pinctrl-0 = <&davinci_mdio_default>;
    pinctrl-1 = <&davinci_mdio_sleep>;
    status = "okay";
};

to:

&mac {
    pinctrl-names = "default";
    pinctrl-0 = <&cpsw_default>;
    slaves = <1>;
    status = "okay";
};

&davinci_mdio {
    pinctrl-names = "default";
    pinctrl-0 = <&davinci_mdio_default>;
    status = "okay";
};

Regards,


-- 
Robert Nelson
https://rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAOCHtYi7pEF_RuKLAvCh2ZiXuhnK-oggZykntXCND6FC8rQiyw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to