From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 14926C48BC2 for ; Mon, 28 Jun 2021 00:40:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F266661C5D for ; Mon, 28 Jun 2021 00:40:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231887AbhF1AnL (ORCPT ); Sun, 27 Jun 2021 20:43:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231845AbhF1AnK (ORCPT ); Sun, 27 Jun 2021 20:43:10 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ACE73C061574 for ; Sun, 27 Jun 2021 17:40:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=0CRh94sDskcrsrbGFlTvADWfh4XXtEAT9Y9zJdvidZM=; b=2nBPIF2dtrEOx1H3JjbaMLy9X6 gCKNgVyB7jJky2lh3jYP2A3WxF55oQfcV7J74XpwnwAJ8NaUz+68IYcDbqgV78/Hhn3tdTJJBB2QW xWqX4h4mmlQzaNNtvAp6YPdOadF8frQwsxUvT+oysr+zCvo7lWP9wKiNzru/DtzrGWeCbOs5VMK3T mX3efTkPVEuEUkCFGmqHZdczRSoL/wsasyWBZRGRaNZ6p1qBn+248RMqwspp6LlJgrIjHGIGa7ii8 QjtJKd5YkS79+uhx8Vqh3VqcwvMo7sD2kEK7e1X9EEaIVt7BFL9TWFFkF7daUAtyYyoqR3/C9Mb/e 6kN7S+EQ==; Received: from [2601:1c0:6280:3f0::aefb] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1lxfKP-006Ma1-8C; Mon, 28 Jun 2021 00:40:45 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Marc Zyngier Subject: [PATCH -next] IRQ: irqdesc.c: drop excess kernel-doc entry @lookup Date: Sun, 27 Jun 2021 17:40:44 -0700 Message-Id: <20210628004044.9011-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix kernel-doc warning in irqdesc.c: ../kernel/irq/irqdesc.c:692: warning: Excess function parameter 'lookup' description in 'handle_domain_irq' Fixes: e1c054918c6c ("genirq: Move non-irqdomain handle_domain_irq() handling into ARM's handle_IRQ()") Signed-off-by: Randy Dunlap Cc: Marc Zyngier --- kernel/irq/irqdesc.c | 1 - 1 file changed, 1 deletion(-) --- linux-next-20210625.orig/kernel/irq/irqdesc.c +++ linux-next-20210625/kernel/irq/irqdesc.c @@ -682,7 +682,6 @@ EXPORT_SYMBOL_GPL(generic_handle_domain_ * usually for a root interrupt controller * @domain: The domain where to perform the lookup * @hwirq: The HW irq number to convert to a logical one - * @lookup: Whether to perform the domain lookup or not * @regs: Register file coming from the low-level handling code * * Returns: 0 on success, or -EINVAL if conversion has failed