From nobody Sat May 10 03:09:18 2025 Delivered-To: importer2@patchew.org Received-SPF: pass (zohomail.com: domain of vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; envelope-from=linux-kernel-owner@vger.kernel.org; helo=vger.kernel.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail(p=none dis=none) header.from=linux.alibaba.com ARC-Seal: i=1; a=rsa-sha256; t=1605257936; cv=none; d=zohomail.com; s=zohoarc; b=CpprcDqYg3Wc4mggsTnZqSdnz0+Uhbeej8tbYy5CAH3yAsls0LnungTz4fAGJTMRT/JTJ6bw9HiRJWTtZmf1GsMIt6AW/16j4el8kLzBfcEC0aN7m/sFwY/DQTglG8u5NYUaLAD2WSymBWdviv3o7L5x6l0b4uHkN5PM9Znl+3s= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1605257936; h=Cc:Date:From:In-Reply-To:List-Id:Message-ID:References:Subject:To; bh=2c3nOHGdC+Qe0umiqCrcGScs/awAm/fo8z2mIN8BM94=; b=Fl4A+kqt8pVMbVxksl9hxhwQ6rCQ6olUqNOzHMuwXHfgUXKe8dLF4ASkGWJjwtxeqqeGcYun6rWOQU4Y5sO+waqBnjBWXhbmD0rOZamDg9VuTBtMtUPa/8/E0s2Qomw6qXAQ4YGhfEtc0btjMOriRcoXL3bKkdQLC14HTNyGl7o= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mx.zohomail.com with SMTP id 1605257936298948.226293877504; Fri, 13 Nov 2020 00:58:56 -0800 (PST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726418AbgKMI6y (ORCPT ); Fri, 13 Nov 2020 03:58:54 -0500 Received: from out30-43.freemail.mail.aliyun.com ([115.124.30.43]:59327 "EHLO out30-43.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726322AbgKMI6m (ORCPT ); Fri, 13 Nov 2020 03:58:42 -0500 Received: from aliy80.localdomain(mailfrom:alex.shi@linux.alibaba.com fp:SMTPD_---0UFAepvk_1605257910) by smtp.aliyun-inc.com(127.0.0.1); Fri, 13 Nov 2020 16:58:38 +0800 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R141e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04407;MF=alex.shi@linux.alibaba.com;NM=1;PH=DS;RN=8;SR=0;TI=SMTPD_---0UFAepvk_1605257910; From: Alex Shi Cc: Bjorn Helgaas , Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H. Peter Anvin" , linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] x86/PCI: fix a comments issue Date: Fri, 13 Nov 2020 16:58:14 +0800 Message-Id: <1605257895-5536-5-git-send-email-alex.shi@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1605257895-5536-1-git-send-email-alex.shi@linux.alibaba.com> References: <1605257895-5536-1-git-send-email-alex.shi@linux.alibaba.com> To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The comments is using kernel-doc markup, while it isn't, so remove it from kernel-doc type to avoid warning: arch/x86/pci/i386.c:373: warning: Function parameter or member 'pcibios_assign_resources' not described in 'fs_initcall' Signed-off-by: Alex Shi Cc: Bjorn Helgaas =20 Cc: Thomas Gleixner =20 Cc: Ingo Molnar =20 Cc: Borislav Petkov =20 Cc: x86@kernel.org=20 Cc: "H. Peter Anvin" =20 Cc: linux-pci@vger.kernel.org=20 Cc: linux-kernel@vger.kernel.org=20 --- arch/x86/pci/i386.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index fa855bbaebaf..77fda6d432c6 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c @@ -366,7 +366,7 @@ static int __init pcibios_assign_resources(void) return 0; } =20 -/** +/* * called in fs_initcall (one below subsys_initcall), * give a chance for motherboard reserve resources */ --=20 2.29.GIT