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=-12.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,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 DD5F7C47092 for ; Wed, 2 Jun 2021 01:02:53 +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 A3D5F61003 for ; Wed, 2 Jun 2021 01:02:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A3D5F61003 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=hisilicon.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=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:Message-ID:Date:Subject:CC :To:From: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=OruLxC1lGtulkI6W9XJBc9NjKqjHaLNfyb28xz0Sk+Y=; b=WuzFObx3XnM73h XmeU6BQg8rEWbXWDCk+4RWhxwwCeBH/ZK74an3hoIRSir7fKmdPwgP3PKg7zLBRqO0wyu+pc2cmmQ mgiudxm6LB3uRqaMOLBb/07GaTWKPp1TpH1SVpW74jY03+ZCA5LmKBQoWvjqmbadmQ98zeo39uTUi cfCzuKC7hYTXmkQS+DdFXieyxtWldd5WzyDaHFAQsaMq7cOWHQ/Q3QigtrzpRK0j1ENhcVt8aQyLa saxPe394rhzVNQrhdtM8nqn3Lx/7APGi/3AfsvRS0kcbEKm/nOaJwidkcQxACOx8xAGmoni1Scaok a+aQhP/JyA2HKqwvW2fw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1loFFo-001PK9-0M; Wed, 02 Jun 2021 01:01:04 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1loFFj-001PIY-J8 for linux-arm-kernel@lists.infradead.org; Wed, 02 Jun 2021 01:01:01 +0000 Received: from dggeme759-chm.china.huawei.com (unknown [172.30.72.53]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4FvrH83b6jz68yt; Wed, 2 Jun 2021 08:57:56 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by dggeme759-chm.china.huawei.com (10.3.19.105) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2; Wed, 2 Jun 2021 09:00:53 +0800 From: Tian Tao To: , , , CC: , , Tian Tao Subject: [PATCH 0/2] move to use request_irq by IRQF_NO_AUTOEN flag Date: Wed, 2 Jun 2021 09:00:40 +0800 Message-ID: <1622595642-61678-1-git-send-email-tiantao6@hisilicon.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.69.192.56] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To dggeme759-chm.china.huawei.com (10.3.19.105) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210601_180059_836569_444C6177 X-CRM114-Status: UNSURE ( 7.71 ) X-CRM114-Notice: Please train this message. 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 patch #1 and #2 both use IRQF_NO_AUTOEN instead of irq_set_status_flags(irq, IRQ_NOAUTOEN). this change is just to simplify the code, no actual functional changes. Tian Tao (2): arm_pmu: move to use request_irq by IRQF_NO_AUTOEN flag perf: qcom_l2_pmu: move to use request_irq by IRQF_NO_AUTOEN flag drivers/perf/arm_pmu.c | 4 +--- drivers/perf/qcom_l2_pmu.c | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) -- 2.7.4 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel