From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 91CF4151CD8; Tue, 20 Feb 2024 21:16:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708463761; cv=none; b=L/wWQB/5vvNo2gCf8FX2VmAsXc2lMlQz0sIkqpCvFPkC8O/0zs6aIj2u4ivggCrbK9/PMXoHWo0dywfmx+hVhfE9oqR9vpkm2wkJPORZ+AmWkNG9KceJjMh6cegNodtKEvjr3x7g63YY8mTiYVnhQAMahkhV9wn7FOTaZpggziI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708463761; c=relaxed/simple; bh=Lt/hMWPs1By0QrTyKCuf4O+oSKeTJ7wLqYAaf039Spk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eBhYHb3+biYdAkD+jtCntHCE9/dA76nzkcjYhDySoOZk4eDGQC+fbRiYEmJaEVD0csEadgHehAHfifkhM06sOFTaPI+oqXLIwVbPlJ0BJJyD10vvZEdNSESDMt2kp2aFSNMcG5QbCNbFtE7QgEQHy7BsGwiLLQ/ympLc9jdDIU0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DpzNqiqg; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="DpzNqiqg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EADBBC433F1; Tue, 20 Feb 2024 21:16:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708463761; bh=Lt/hMWPs1By0QrTyKCuf4O+oSKeTJ7wLqYAaf039Spk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DpzNqiqgobYC9hpOPgP5xKxuD17LoZZw2ESTGvTM1FclVwGbOFDC4pNkx+p/mw5oe IZLsCNtJSwLTBqN+fCom+Uc5wpxlmO5hYk8FryCdv0se+2rFtE20UU54eb71KtPvxc 60OQSMGpFImgkIi9vj4q+OCkRJtXmPyGPIh9x/gE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Mikhail Rudenko , Tomi Valkeinen , Laurent Pinchart , Mauro Carvalho Chehab Subject: [PATCH 6.6 117/331] media: Revert "media: rkisp1: Drop IRQF_SHARED" Date: Tue, 20 Feb 2024 21:53:53 +0100 Message-ID: <20240220205641.293818721@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240220205637.572693592@linuxfoundation.org> References: <20240220205637.572693592@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tomi Valkeinen commit a107d643b2a3382e0a2d2c4ef08bf8c6bff4561d upstream. This reverts commit 85d2a31fe4d9be1555f621ead7a520d8791e0f74. The rkisp1 does share interrupt lines on some platforms, after all. Thus we need to revert this, and implement a fix for the rkisp1 shared irq handling in a follow-up patch. Closes: https://lore.kernel.org/all/87o7eo8vym.fsf@gmail.com/ Link: https://lore.kernel.org/r/20231218-rkisp-shirq-fix-v1-1-173007628248@ideasonboard.com Reported-by: Mikhail Rudenko Signed-off-by: Tomi Valkeinen Signed-off-by: Laurent Pinchart Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Greg Kroah-Hartman --- drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c +++ b/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c @@ -559,7 +559,7 @@ static int rkisp1_probe(struct platform_ rkisp1->irqs[il] = irq; } - ret = devm_request_irq(dev, irq, info->isrs[i].isr, 0, + ret = devm_request_irq(dev, irq, info->isrs[i].isr, IRQF_SHARED, dev_driver_string(dev), dev); if (ret) { dev_err(dev, "request irq failed: %d\n", ret);