From nobody Sun Apr 12 02:48:24 2026 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 E4E2CC19F2B for ; Tue, 2 Aug 2022 11:53:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236461AbiHBLxM (ORCPT ); Tue, 2 Aug 2022 07:53:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45822 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231208AbiHBLxK (ORCPT ); Tue, 2 Aug 2022 07:53:10 -0400 Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E53D7313AD; Tue, 2 Aug 2022 04:53:08 -0700 (PDT) Received: from dggpemm500023.china.huawei.com (unknown [172.30.72.55]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4LxtbP0rvVzlVyT; Tue, 2 Aug 2022 19:50:25 +0800 (CST) Received: from dggpemm500018.china.huawei.com (7.185.36.111) by dggpemm500023.china.huawei.com (7.185.36.83) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Tue, 2 Aug 2022 19:53:06 +0800 Received: from huawei.com (10.174.176.191) by dggpemm500018.china.huawei.com (7.185.36.111) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Tue, 2 Aug 2022 19:53:06 +0800 From: Tie Liu To: CC: , , , Subject: [PATCH] posix-timers: Resolve some coding specification issues about spaces Date: Tue, 2 Aug 2022 19:53:05 +0800 Message-ID: <20220802115305.1103-1-liutie4@huawei.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.174.176.191] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpemm500018.china.huawei.com (7.185.36.111) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Some spaces were not used in accordance with current encoding specifications, so I tried to modify them. Signed-off-by: Liu Tie --- kernel/time/posix-timers.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/time/posix-timers.c b/kernel/time/posix-timers.c index 5dead8930..ea9b24ee4 100644 --- a/kernel/time/posix-timers.c +++ b/kernel/time/posix-timers.c @@ -428,7 +428,7 @@ static enum hrtimer_restart posix_timer_fn(struct hrtim= er *timer) return ret; } =20 -static struct pid *good_sigevent(sigevent_t * event) +static struct pid *good_sigevent(sigevent_t *event) { struct pid *pid =3D task_tgid(current); struct task_struct *rtn; @@ -452,7 +452,7 @@ static struct pid *good_sigevent(sigevent_t * event) } } =20 -static struct k_itimer * alloc_posix_timer(void) +static struct k_itimer *alloc_posix_timer(void) { struct k_itimer *tmr; tmr =3D kmem_cache_zalloc(posix_timers_cache, GFP_KERNEL); @@ -1106,7 +1106,7 @@ SYSCALL_DEFINE2(clock_gettime, const clockid_t, which= _clock, return error; } =20 -int do_clock_adjtime(const clockid_t which_clock, struct __kernel_timex * = ktx) +int do_clock_adjtime(const clockid_t which_clock, struct __kernel_timex *k= tx) { const struct k_clock *kc =3D clockid_to_kclock(which_clock); =20 --=20 2.27.0