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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D21B6C54EBD for ; Mon, 9 Jan 2023 10:12:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=31wQ4UK0TB4qTA6JScRmzEvWcF9GkgsuBXM0XxzC5aU=; b=SwZHgPMnAX8Ftb FDnR4GcgE+9k7J5105zgE0ibs1RAEe26r4G2pyCv9508VHt3zV7B3LtkNFRWYlJvcko5JvwFSzXUB wRqWTQcdYvSBzo7P9xodTXtELky3u7zHncZxIJ4oyRTxU6bqDairPPcwzZgyEcAj+hQlBpfQV16vE ieKmQ9BB+DSatw1+B8TbWV3oaDhPzMbjQnX8mM18+61MXE3NBpei1UfwropF4ipqiHFstIeMYnNgJ 9qGOElFVnUxstFkLuvd79B7D2xwB2Le1lpZmvEkx1iwQZLsZV+auJahL2Fq2x2h2/PCjrIR7cdQzo 6bgzBs/E0rEU/6Ca3aeA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pEp7e-000imF-8S; Mon, 09 Jan 2023 10:11:18 +0000 Received: from mail.skyhub.de ([5.9.137.197]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pEp7Z-000ika-Md for linux-arm-kernel@lists.infradead.org; Mon, 09 Jan 2023 10:11:17 +0000 Received: from zn.tnic (p5de8e9fe.dip0.t-ipconnect.de [93.232.233.254]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.skyhub.de (SuperMail on ZX Spectrum 128k) with ESMTPSA id 7B54A1EC0532; Mon, 9 Jan 2023 11:11:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alien8.de; s=dkim; t=1673259067; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:in-reply-to:in-reply-to: references:references; bh=s3E9dpbJtVH4yEt7zzsizo9ZhgWRrl0Z4FFOZogFsGQ=; b=jCSwIarRYH0YWxO8139x/U/oNZxdg0R7f3zhQcU7d4Q7VoxAuTSz88tJZZeKWa93qp9LAe +/XNcLKvOLLjXemde+ebcLKd9+9nzaLc8zN5y4RxQjidPHMtLJB/1Avp0SgEvEcaQjDPBg ZGYstu9CV8LZoV+HOfBBK+LgTxa5pFM= Date: Mon, 9 Jan 2023 11:11:03 +0100 From: Borislav Petkov To: "Potthuri, Sai Krishna" Cc: Rob Herring , Krzysztof Kozlowski , Michal Simek , Mauro Carvalho Chehab , Tony Luck , James Morse , Robert Richter , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "linux-edac@vger.kernel.org" , "saikrishna12468@gmail.com" , "git (AMD-Xilinx)" , "Datta, Shubhrajyoti" , kernel test robot Subject: Re: [PATCH v7 2/2] EDAC/zynqmp: Add EDAC support for Xilinx ZynqMP OCM Message-ID: References: <20230104084512.1855243-1-sai.krishna.potthuri@amd.com> <20230104084512.1855243-3-sai.krishna.potthuri@amd.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230109_021113_924840_2B7A2AEE X-CRM114-Status: GOOD ( 10.38 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Jan 09, 2023 at 06:09:02AM +0000, Potthuri, Sai Krishna wrote: > As we are raising a warning message in intr_handler() if the flagged interrupt > is not UE or CE and we return from there, so do we really need else if{} and > WARN_ON_ONCE() in else{} here? Yeah, ok, lemme remove it and queue the thing. Thx. -- Regards/Gruss, Boris. https://people.kernel.org/tglx/notes-about-netiquette _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel