From patchwork Wed Jun 23 20:48:57 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergey Shtylyov X-Patchwork-Id: 12340505 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=-5.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,UNPARSEABLE_RELAY,USER_AGENT_SANE_1 autolearn=no 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 EC3C2C48BC2 for ; Wed, 23 Jun 2021 20:49:44 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 0248D610A0 for ; Wed, 23 Jun 2021 20:49:43 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0248D610A0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=omp.ru Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org 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:MIME-Version:Date:Message-ID:Subject: From:CC:To:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=IyyFVjr22kzwLCvkrtd+hk7I/vHl1EysG5lg40k8dc4=; b=e6YefGDhmWZbKk PjPOqY1tO3Js7KFKCWUpH0hbBRsMTAdUCp97orTgIjgYmqd4SBLYUGapmSWQLVefYJdAs/ONGpvnb uBRACou1Ax0PaU3ptSc3B8WD44lVidJAJfMGdakL0KKOOWxAd1R2BqbBvKBFoo4EGAbyuD+HX3gyE bHmTAbmdQhXMIfIOiMZ7U4ROGCwJVcPJ1PHaUd2xVtdGXEpTpzVwDjVI1D+K+8xiczoW7hHEqfS6y PswXEfq7ZTmF0Genx99vRX1ChPIrQv2srgGwnyw9e/Ln+LKPg6It51dqHhO0nVI0gmU6JQfhXStpZ BlY3beHxyvJNPxvDWgZw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1lw9oP-00Bvlz-NC; Wed, 23 Jun 2021 20:49:30 +0000 Received: from mxout03.lancloud.ru ([45.84.86.113]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1lw9oC-00BvkY-Ml; Wed, 23 Jun 2021 20:49:18 +0000 Received: from LanCloud DKIM-Filter: OpenDKIM Filter v2.11.0 mxout03.lancloud.ru D8F4820A8BE4 Received: from LanCloud Received: from LanCloud Received: from LanCloud To: CC: Qii Wang , Matthias Brugger , , , From: Sergey Shtylyov Subject: [PATCH 0/5] Correctly handle plaform_get_irq()'s result in the i2C drivers Organization: Open Mobile Platform Message-ID: Date: Wed, 23 Jun 2021 23:48:57 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.1 MIME-Version: 1.0 Content-Language: en-US X-Originating-IP: [192.168.11.198] X-ClientProxiedBy: LFEXT02.lancloud.ru (fd00:f066::142) To LFEX1907.lancloud.ru (fd00:f066::207) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210623_134916_957685_E5E8EFE5 X-CRM114-Status: UNSURE ( 5.68 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-mediatek@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "Linux-mediatek" Errors-To: linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org Here are 5 patches against the 'i2c/for-current' branch of the Jens Axboe's 'linux-block.git' repo. The affected drivers call platform_get_irq() but mis-interprete its result -- they consider IRQ0 as error and (sometimes) the real error codes as valid IRQs... :-/ [1/5] i2c: hix5hd2: fix IRQ check [2/5] i2c: mt65xx: fix IRQ check [3/5] i2c: pmcmsp: fix-IRQ-check [4/5] i2c: s3c2410: fix IRQ check [5/5] i2c: xlp9xx: fix main IRQ check