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=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,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 55F3FC2D0CE for ; Sun, 29 Dec 2019 17:57:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 26E13222D9 for ; Sun, 29 Dec 2019 17:57:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1577642224; bh=xX3GXCkwGmfzTgKVsOuf/rk8GZHWLEOBxb3PJ8lKHuw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=w/hdP6tLBLyejpbrYr0x1521frNMZmCYvjfx9aEZCQ5+6hyydq0ujE45KGLoM9ozN Js4V7shuNHxWlmf1nStP1zdCQ/hrYO55rLRDljKxypfmDFBgFrGjmU0+iaBW4uwrwU VlrA42kfeWIL+pmo5XKxwRfDOCBqJ3plQ0RZ14g8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732925AbfL2R5C (ORCPT ); Sun, 29 Dec 2019 12:57:02 -0500 Received: from mail.kernel.org ([198.145.29.99]:47100 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1733173AbfL2R5B (ORCPT ); Sun, 29 Dec 2019 12:57:01 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2FAC0222C3; Sun, 29 Dec 2019 17:57:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1577642220; bh=xX3GXCkwGmfzTgKVsOuf/rk8GZHWLEOBxb3PJ8lKHuw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MLwqp6gS6OYOf3WO0ejg/yeUnwzocZLPTvLGakW4nTNoT5X36dgfYvEBB+tdgOwf8 mSzh1m+BoHJBgPDbRxTv8xfxb00meOBAwqCy3XZIS4YOv61Yxlu1vxOYqPMEOc0hZX t+mlrLNAlVY3Lg5H29vtlTxaxz9iGNThEvXfmoOI= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, kbuild test robot , Mark Brown , Christophe Leroy Subject: [PATCH 5.4 392/434] spi: fsl: use platform_get_irq() instead of of_irq_to_resource() Date: Sun, 29 Dec 2019 18:27:25 +0100 Message-Id: <20191229172728.361631424@linuxfoundation.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20191229172702.393141737@linuxfoundation.org> References: <20191229172702.393141737@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Christophe Leroy commit 63aa6a692595d47a0785297b481072086b9272d2 upstream. Unlike irq_of_parse_and_map() which has a dummy definition on SPARC, of_irq_to_resource() hasn't. But as platform_get_irq() can be used instead and is generic, use it. Reported-by: kbuild test robot Suggested-by: Mark Brown Fixes: 3194d2533eff ("spi: fsl: don't map irq during probe") Cc: stable@vger.kernel.org Signed-off-by: Christophe Leroy Link: https://lore.kernel.org/r/091a277fd0b3356dca1e29858c1c96983fc9cb25.1576172743.git.christophe.leroy@c-s.fr Signed-off-by: Mark Brown Signed-off-by: Greg Kroah-Hartman --- drivers/spi/spi-fsl-spi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/drivers/spi/spi-fsl-spi.c +++ b/drivers/spi/spi-fsl-spi.c @@ -736,9 +736,9 @@ static int of_fsl_spi_probe(struct platf if (ret) goto err; - irq = of_irq_to_resource(np, 0, NULL); - if (irq <= 0) { - ret = -EINVAL; + irq = platform_get_irq(ofdev, 0); + if (irq < 0) { + ret = irq; goto err; }