From nobody Thu Apr 9 07:18:19 2026 Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C0EA743C079 for ; Tue, 10 Mar 2026 09:08:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773133741; cv=none; b=AVGuOBP0Jw5lRW94iOehp8zQS0pbieuddV5rSdPoDuGapKSNDA1jlKGS/YxTthPnAGkOA07kKNtCwK+89voTHszVfkLPDegb6TM7Bw35rtqIsnYOYznnEZbWNPFiPwkLfSSd+WSHdTrjjafmnwpN8+VBXnalE4I5nu1NYU8hDK8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773133741; c=relaxed/simple; bh=a6VIHMyHIH01ONGCJNel8JIHj+rGO7Vd95lqPnBItYQ=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=IgcrQGrchPF0pvKSWnQeG5//gcbcDu0+b+Xl7Ma2+Adb36NYnKUcymAH48QVYTOR6Np7hEsgI4H4ZLwMXOsvgOIbtzfZgNfLy4OzxTDE8LlbzlundSrRBo17vsBU2/8vmLp3iKXAwq+utRmwT7vfbeUlnzArbE07+iuRV6nPow8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vzt59-00050K-Bf; Tue, 10 Mar 2026 10:08:51 +0100 From: Philipp Zabel To: linux-kernel@vger.kernel.org Cc: kernel@pengutronix.de, Bartosz Golaszewski , Philipp Zabel , kernel test robot Subject: [PATCH] reset: core: Fix indentation Date: Tue, 10 Mar 2026 10:08:39 +0100 Message-ID: <20260310090839.2067758-1-p.zabel@pengutronix.de> X-Mailer: git-send-email 2.47.3 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-SA-Exim-Connect-IP: 2a0a:edc0:0:1101:1d::54 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Correct an accidental whitespace change. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202603100730.J3pi4xqi-lkp@int= el.com/ Fixes: 9035073d0ef1 ("reset: convert reset core to using firmware nodes") Signed-off-by: Philipp Zabel --- drivers/reset/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/reset/core.c b/drivers/reset/core.c index e625cf59cfb0..726b7346b148 100644 --- a/drivers/reset/core.c +++ b/drivers/reset/core.c @@ -1215,7 +1215,7 @@ __fwnode_reset_control_get(struct fwnode_handle *fwno= de, const char *id, int ind } if (rstc_id < 0) { rstc =3D ERR_PTR(rstc_id); - goto out_put; + goto out_put; } =20 flags &=3D ~RESET_CONTROL_FLAGS_BIT_OPTIONAL; --=20 2.47.3