From nobody Sat Feb 7 19:41:41 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 D767CC7EE23 for ; Thu, 8 Jun 2023 08:23:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235231AbjFHIXW (ORCPT ); Thu, 8 Jun 2023 04:23:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60364 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233942AbjFHIXT (ORCPT ); Thu, 8 Jun 2023 04:23:19 -0400 Received: from out30-112.freemail.mail.aliyun.com (out30-112.freemail.mail.aliyun.com [115.124.30.112]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3992EE43 for ; Thu, 8 Jun 2023 01:23:17 -0700 (PDT) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R521e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046050;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0VkdXoEh_1686212593; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VkdXoEh_1686212593) by smtp.aliyun-inc.com; Thu, 08 Jun 2023 16:23:14 +0800 From: Yang Li To: akpm@linux-foundation.org Cc: arnd@arndb.de, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] kernel: Remove duplicated include in posix-stubs.c Date: Thu, 8 Jun 2023 16:23:12 +0800 Message-Id: <20230608082312.123939-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c 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" ./kernel/time/posix-stubs.c: linux/syscalls.h is included more than once. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D5463 Fixes: c1956519cd7e ("syscalls: add sys_ni_posix_timers prototype") Signed-off-by: Yang Li --- kernel/time/posix-stubs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/time/posix-stubs.c b/kernel/time/posix-stubs.c index 39769b2d1005..828aeecbd1e8 100644 --- a/kernel/time/posix-stubs.c +++ b/kernel/time/posix-stubs.c @@ -16,7 +16,6 @@ #include #include #include -#include =20 #ifdef CONFIG_ARCH_HAS_SYSCALL_WRAPPER /* Architectures may override SYS_NI and COMPAT_SYS_NI */ --=20 2.20.1.7.g153144c