Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp157807pxf; Tue, 30 Mar 2021 23:12:05 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwuffZNkMUy/lR9YjBmvbf5JSUhvXv7tf0YvF6XQUvaeA679TakF7GP07udA7Rmtyjuh5Gl X-Received: by 2002:a17:906:151a:: with SMTP id b26mr1806178ejd.492.1617171125472; Tue, 30 Mar 2021 23:12:05 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1617171125; cv=none; d=google.com; s=arc-20160816; b=UawFrLvjrOEoAuTFbnwoBr+UDJ6p6ddSvoMCWLc5CPPQURkqGvZKr1j6du0aQhl/zp y9KUpWt5TnrahOaTE0v1q5shDFWQX8XTC8Hncaj0m/1HMguEHy/QQ0ELkqc9pBwTBbU9 95Ps7sy8Fusu5qT/gOkPlTMpLzUPZhOkGT+NczTKZU5L6EVAuin5tOiYe8rkyUFIuJ+K 1HU91ng25v2TwNO+uVjVrmQPwTEQUk+vTJjfDY8jR01cA6Hcci65yyMzaN8uP3qR1pZL Fv3e1PXmhI5wgK1lIMkRIrx518Wvrj+VTl6VfZTU+zrH/GKBjnE5VmH1zEZ5zPmhhzMp wedg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=w+cxmDV7Bp+Q3DRe6WVGck6E6IPGoWYPuNPcRFSNKwM=; b=xm2sdLh53D+int4FTjl8f9sp1Tf1aiBoE6GaM2nVPUH5SoK2CXYBr6Oi9noLBeK3IJ C7zn8Las2FDu2WGRSvBVnr3DJG1VtGq6MY9H59BlcdFH75k9Ewj22ezy3hht9gHMla0Y m4BIaee4nNwMQ3wjUmnO0RgbvLF7EhDylMlFnBuBec5iO6AdudPkpJyJ3g2Dr7zcWrb0 qfFcTtVt7eRnQ+evWqEVN9oKg0762Syg79dOqlkR1C28ed0704Cq01/qGVqSIJsnJAbf y0z80LTQuNeQaQpVp0ro2DeCR1/eyoD5IRRL4cfAdOeN3LIwSBjDJeZVNTHFeBgJQnCF ZOGA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id g17si943612eds.403.2021.03.30.23.11.42; Tue, 30 Mar 2021 23:12:05 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229497AbhCaGIh (ORCPT + 99 others); Wed, 31 Mar 2021 02:08:37 -0400 Received: from muru.com ([72.249.23.125]:49100 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233690AbhCaGHQ (ORCPT ); Wed, 31 Mar 2021 02:07:16 -0400 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 6ABEB80C3; Wed, 31 Mar 2021 06:08:18 +0000 (UTC) Date: Wed, 31 Mar 2021 09:07:12 +0300 From: Tony Lindgren To: Aditya Srivastava Cc: linux-kernel@vger.kernel.org, lukas.bulwahn@gmail.com, rdunlap@infradead.org, aaro.koskinen@iki.fi, linux@armlinux.org.uk, linux-kernel-mentees@lists.linuxfoundation.org, linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org Subject: Re: [PATCH] ARM: OMAP1: fix incorrect kernel-doc comment syntax in file Message-ID: References: <20210330205330.26345-1-yashsri421@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210330205330.26345-1-yashsri421@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Aditya Srivastava [210330 23:54]: > The opening comment mark '/**' is used for highlighting the beginning of > kernel-doc comments. > The header for arch/arm/mach-omap1/timer.c follows this syntax, but the > content inside does not comply with kernel-doc. > > This line was probably not meant for kernel-doc parsing, but is parsed > due to the presence of kernel-doc like comment syntax(i.e, '/**'), which > causes unexpected warning from kernel-doc: > "warning: expecting prototype for OMAP1 Dual(). Prototype was for OMAP1610_GPTIMER1_BASE() instead" > > Provide a simple fix by replacing this occurrence with general comment > format, i.e. '/*', to prevent kernel-doc from parsing it. Thanks applying into omap-for-v5.13/soc. Tony