[U-Boot] [PATCH] net: phy: micrel: add support for KSZ886x switches in MIIM mode

2016-05-26 Thread Alexey Firago
-off-by: Alexey Firago --- drivers/net/phy/micrel.c | 26 ++ 1 file changed, 26 insertions(+) diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c index 8fcf737..58891f8 100644 --- a/drivers/net/phy/micrel.c +++ b/drivers/net/phy/micrel.c @@ -482,6 +482,31

Re: [U-Boot] [PATCH v3] fastboot: add support for reboot-bootloader command

2015-03-05 Thread Alexey Firago
d then resetting. Setting of the reset flag is implemented using __weak fb_set_reboot_flag() function. The actual setting and checking of the reset flag should be implemented by a boot script and/or board/SoC specific code. Signed-off-by: Alexey Firago --- Changes in v3: - return -ENOSYS from

Re: [U-Boot] [PATCH v3] fastboot: add support for reboot-bootloader command

2015-03-05 Thread Alexey Firago
set flag should be implemented by a boot script and/or board/SoC specific code. Signed-off-by: Alexey Firago --- Changes in v3: - return -ENOSYS from default fb_set_reboot_flag() Changes in v2: - return error in default fb_set_reboot_flag() drivers/usb/gadget/f_fastboot.c | 13 +

[U-Boot] [PATCH v3] fastboot: add support for reboot-bootloader command

2015-02-25 Thread Alexey Firago
resetting. Setting of the reset flag is implemented using __weak fb_set_reboot_flag() function. The actual setting and checking of the reset flag should be implemented by a boot script and/or board/SoC specific code. Signed-off-by: Alexey Firago --- Changes in v3: - return -ENOSYS from default fb_set_r

[U-Boot] [PATCH v2] fastboot: add support for reboot-bootloader command

2015-02-24 Thread Alexey Firago
resetting. Setting of the reset flag is implemented using __weak fb_set_reboot_flag() function. The actual setting and checking of the reset flag should be implemented by a boot script and/or board/SoC specific code. Signed-off-by: Alexey Firago --- Changes in v2: - return error in default fb_set_r

Re: [U-Boot] [PATCH v1] fastboot: add support for reboot-bootloader command

2015-02-24 Thread Alexey Firago
On 24.02.2015 19:15, Rob Herring wrote: On Tue, Feb 24, 2015 at 5:34 AM, Alexey Firago wrote: The "fastboot reboot-bootloader" command is defined to re-enter into fastboot mode after rebooting into bootloader. This command is usually used after updating bootloader via fastboot. T

[U-Boot] [PATCH v1] fastboot: add support for reboot-bootloader command

2015-02-24 Thread Alexey Firago
resetting. Setting of the reset flag is implemented using __weak fb_set_reboot_flag() function. The actual setting and checking of the reset flag should be implemented by a boot script and/or board/SoC specific code. Signed-off-by: Alexey Firago --- drivers/usb/gadget/f_fastboot.c | 13 +++