From nobody Sun Sep 14 16:32:21 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 B1E40C05027 for ; Fri, 20 Jan 2023 14:40:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230352AbjATOkq (ORCPT ); Fri, 20 Jan 2023 09:40:46 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43794 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230332AbjATOko (ORCPT ); Fri, 20 Jan 2023 09:40:44 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BBDF8457DE for ; Fri, 20 Jan 2023 06:40:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1674225614; x=1705761614; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=D44+KU7ZiM3CE8om7qWz+e12D8GVZHQeVAMd689yP1o=; b=ZOJ0lZH1/VHO0NBPO/IcrpWwnF8G8LhwljM2IX08cX9K57YCi9ZBJQFc waqPXcWPLvVfSry9hmRf8qZDRrW7+foe0PbmzaRLneU6pafqXZoDIf0zN ypKnp9WhtqwyGUezGMNpmQL0S8Z/mGT7cFvMLvd7BZ+bfb5+sMWGQVdWD DveuDMccAAzl7PmB4i9QjbG++uzRj+Z/FhK5/WhfZqlNDWRKYSe+PQ4Xe ml0jk98o5mU7d+FWxfbRzrcPj7DY3+BM3i46s78+mAqgxkXASJYiBSrlO sCY30LRvDHFAXr2gGgkTCNRQPE2sX3IcRGGb+2NGs+gqcbMebU76TDgKH Q==; X-IronPort-AV: E=Sophos;i="5.97,232,1669100400"; d="scan'208";a="208646907" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa1.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 20 Jan 2023 07:38:16 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.16; Fri, 20 Jan 2023 07:38:15 -0700 Received: from wendy.microchip.com (10.10.115.15) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2507.16 via Frontend Transport; Fri, 20 Jan 2023 07:38:14 -0700 From: Conor Dooley To: Jassi Brar CC: Conor Dooley , Daire McNamara , , Subject: [PATCH v2 4/7] soc: microchip: mpfs: fix some horrible alignment Date: Fri, 20 Jan 2023 14:37:32 +0000 Message-ID: <20230120143734.3438755-5-conor.dooley@microchip.com> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230120143734.3438755-1-conor.dooley@microchip.com> References: <20230120143734.3438755-1-conor.dooley@microchip.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" mpfs_sys_controller_delete() has some horrible alignment that upsets my OCD... Move the RHS of the assignment to a new line for greater satifaction. Signed-off-by: Conor Dooley --- drivers/soc/microchip/mpfs-sys-controller.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/soc/microchip/mpfs-sys-controller.c b/drivers/soc/micr= ochip/mpfs-sys-controller.c index 6e20207b5756..12039cb38b33 100644 --- a/drivers/soc/microchip/mpfs-sys-controller.c +++ b/drivers/soc/microchip/mpfs-sys-controller.c @@ -66,8 +66,8 @@ static void rx_callback(struct mbox_client *client, void = *msg) =20 static void mpfs_sys_controller_delete(struct kref *kref) { - struct mpfs_sys_controller *sys_controller =3D container_of(kref, struct = mpfs_sys_controller, - consumers); + struct mpfs_sys_controller *sys_controller =3D + container_of(kref, struct mpfs_sys_controller, consumers); =20 mbox_free_channel(sys_controller->chan); kfree(sys_controller); --=20 2.39.0