From nobody Mon Sep 8 09:50:52 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D7B3CC001DC for ; Fri, 21 Jul 2023 01:14:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229815AbjGUBO4 (ORCPT ); Thu, 20 Jul 2023 21:14:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45900 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229616AbjGUBOy (ORCPT ); Thu, 20 Jul 2023 21:14:54 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 632F7F0 for ; Thu, 20 Jul 2023 18:14:52 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R6Wn454LczBRDt1 for ; Fri, 21 Jul 2023 09:14:48 +0800 (CST) Authentication-Results: mail.208.org (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=208.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=208.org; h= content-transfer-encoding:content-type:message-id:user-agent :subject:to:from:date:mime-version; s=dkim; t=1689902088; x= 1692494089; bh=prNsw1hEDDMkz5G7L9nWB6cVQC30jTEoax0cTGsEIQY=; b=V nK35vQpn42Nst+lwFPczzw1czFVwyBXDHXf8VdiTmrkP3rNuSXqC7T2eNu3eStzw mVnTtfH8U7jdlYTYhnT88r3mvEdHPF6pEqs1jAv8DsPXgxlErQz7yMErjrPm3Grs gwQpufq9PNk/TP9upcIfpLwf46jTkBx7pGSsAt0BZB6sqyIjJy844mn+pW6h/I8A c8TbcblOu+gua8b20ey4rRYXMULNaACHreG2cg41AJ0uv46SbX0hDNbgiQFSLwmg ESsRXADQSHvpzffFLzNFyZ8YFjtwvqhsRM5Fy863wcqrQjP3/yqUNC/p2jmfrrW3 hVcfKV414tCd25m+nQdcA== X-Virus-Scanned: amavisd-new at mail.208.org Received: from mail.208.org ([127.0.0.1]) by mail.208.org (mail.208.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id JhQ2C8hDUW8Q for ; Fri, 21 Jul 2023 09:14:48 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R6Wn43TFxzBJkk9; Fri, 21 Jul 2023 09:14:48 +0800 (CST) MIME-Version: 1.0 Date: Fri, 21 Jul 2023 09:14:48 +0800 From: zhangyongle001@208suo.com To: ysato@users.sourceforge.jp, dalias@libc.org, glaubitz@physik.fu-berlin.de Cc: linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] sh: boards: ERROR: that open brace { should be on the previous line User-Agent: Roundcube Webmail Message-ID: <6abe5f4bb1a7b0373c13ae53ffbc8d1e@208suo.com> X-Sender: zhangyongle001@208suo.com Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8"; format="flowed" Fix the following checkpatch error: ERROR: that open brace { should be on the previous line Signed-off-by: zhangyongle --- arch/sh/boards/board-sh7757lcr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/sh/boards/board-sh7757lcr.c=20 b/arch/sh/boards/board-sh7757lcr.c index f39c8196efdf..f8862f8afc2d 100644 --- a/arch/sh/boards/board-sh7757lcr.c +++ b/arch/sh/boards/board-sh7757lcr.c @@ -191,8 +191,7 @@ static struct platform_device=20 sh7757_eth_giga1_device =3D { }; /* Fixed 3.3V regulator to be used by SDHI0, MMCIF */ -static struct regulator_consumer_supply fixed3v3_power_consumers[] =3D -{ +static struct regulator_consumer_supply fixed3v3_power_consumers[] =3D { REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"), REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"), REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"), --=20 2.40.1