From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pg1-x544.google.com ([2607:f8b0:4864:20::544]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jJKbN-0004pJ-EV for barebox@lists.infradead.org; Tue, 31 Mar 2020 17:23:02 +0000 Received: by mail-pg1-x544.google.com with SMTP id k191so10610188pgc.13 for ; Tue, 31 Mar 2020 10:23:01 -0700 (PDT) From: Andrey Smirnov Date: Tue, 31 Mar 2020 10:22:52 -0700 Message-Id: <20200331172252.9703-1-andrew.smirnov@gmail.com> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH] mfd: rave-sp: Fix rave_sp_emulated_get_status() To: Barebox List Cc: Andrey Smirnov Original code in rave_sp_emulated_get_status() got the meaning of RAVE_SP_STATUS_GS_FIRMWARE_MODE wrong. Invert it to correctly detect if RAVE SP device is in bootloader mode or not. Signed-off-by: Andrey Smirnov --- drivers/mfd/rave-sp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/rave-sp.c b/drivers/mfd/rave-sp.c index 67f7d4c65..c6ad57d51 100644 --- a/drivers/mfd/rave-sp.c +++ b/drivers/mfd/rave-sp.c @@ -661,7 +661,7 @@ static int rave_sp_emulated_get_status(struct rave_sp *sp, return ret; status->general_status = - firmware_mode ? RAVE_SP_STATUS_GS_FIRMWARE_MODE : 0; + firmware_mode ? 0 : RAVE_SP_STATUS_GS_FIRMWARE_MODE; return 0; } -- 2.21.0 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox