From nobody Mon Sep 8 09:50:53 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 9BF2AC0015E for ; Fri, 21 Jul 2023 00:32:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229771AbjGUAcD (ORCPT ); Thu, 20 Jul 2023 20:32:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36320 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229450AbjGUAcB (ORCPT ); Thu, 20 Jul 2023 20:32:01 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B4147E0 for ; Thu, 20 Jul 2023 17:31:59 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R6Vqd4Qb6zBRDst for ; Fri, 21 Jul 2023 08:31:57 +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=1689899517; x= 1692491518; bh=MWoGDdiztOjUGuFbuEqKYbtLTB1P209Y8QkCjJFsz+8=; b=1 RVJMTw4vC7EOtA5OoYvgwquUE/ozQMB/Lhn/uEHfqPWb5IGGlgkRWlwsu+3nq4K6 ZGpIEkLpNSJSjPm3wb12Npbzmzz9AyK2IW4wLBtaMR7yq1mW8O4HtQIi/wIuavx8 HlmHiCmD7xtC4mejRxcXsptDY4SIdEWoHBoO1VryjiG/RVIGiumAuuIRwQJ7Rp0l dy4w35ZFA9amQAPh/Iz/3lcewgWGQ4gtg+sY0On0ZdevoiMDmBFc4dB459KTbQnC d16lGJS1gBB1MRcFqfDnjaXxCE6LH7Jo2jZNb21/IjDPyGUjzFOnxkE91uymo6Cx Gj+mIVqGvhA4N+DFdmlEA== 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 WkmJ49qmLgpP for ; Fri, 21 Jul 2023 08:31:57 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R6Vqd1tyYzBJqBP; Fri, 21 Jul 2023 08:31:57 +0800 (CST) MIME-Version: 1.0 Date: Fri, 21 Jul 2023 08:31:57 +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/mach-ap325rxa: ERROR: that open brace { should be on the previous line User-Agent: Roundcube Webmail Message-ID: 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/mach-ap325rxa/setup.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/sh/boards/mach-ap325rxa/setup.c=20 b/arch/sh/boards/mach-ap325rxa/setup.c index 151792162152..45a5ffc5a216 100644 --- a/arch/sh/boards/mach-ap325rxa/setup.c +++ b/arch/sh/boards/mach-ap325rxa/setup.c @@ -305,8 +305,7 @@ static struct platform_device ap325rxa_ceu_device =3D=20 { }; /* Fixed 3.3V regulators to be used by SDHI0, SDHI1 */ -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_mobile_sdhi.1"), --=20 2.40.1