From: Stefan Roese Date: Fri, 11 Aug 2023 08:02:04 +0000 (+0200) Subject: kirkwood: dns325: Enable 2nd harddrive X-Git-Tag: v2025.01-rc5-pxa1908~821^2~11 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=fec546264797022be2d70c441bd2d07fe9045056;p=u-boot.git kirkwood: dns325: Enable 2nd harddrive The 2nd HD is not enabled in U-Boot on the D-Link DNS325. This patch sets the responsible GPIO to high, enabling the drive. Suggested-by: Peter Granilla Signed-off-by: Stefan Roese Cc: Tom Rini Reviewed-by: Tony Dinh --- diff --git a/board/d-link/dns325/dns325.c b/board/d-link/dns325/dns325.c index 055783f63a..8ebfe4c601 100644 --- a/board/d-link/dns325/dns325.c +++ b/board/d-link/dns325/dns325.c @@ -89,6 +89,7 @@ int board_early_init_f(void) kw_gpio_set_blink(DNS325_GPIO_LED_POWER , 1); kw_gpio_set_value(DNS325_GPIO_SATA0_EN , 1); + kw_gpio_set_value(DNS325_GPIO_SATA1_EN , 1); return 0; }