From patchwork Mon Aug 26 13:26:03 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Martin_T=C5=AFma?= X-Patchwork-Id: 99185 Received: from ny.mirrors.kernel.org ([147.75.199.223]) by linuxtv.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1siZjr-0004NR-2L for patchwork@linuxtv.org; Mon, 26 Aug 2024 13:26:34 +0000 Received: from smtp.subspace.kernel.org (wormhole.subspace.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ny.mirrors.kernel.org (Postfix) with ESMTPS id 726DD1C21AA4 for ; Mon, 26 Aug 2024 13:26:30 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id C2DF9185945; Mon, 26 Aug 2024 13:26:24 +0000 (UTC) X-Original-To: linux-media@vger.kernel.org Received: from mx.gpxsee.org (mx.gpxsee.org [37.205.14.76]) (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 0CE0818454D; Mon, 26 Aug 2024 13:26:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=37.205.14.76 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724678784; cv=none; b=X5Yudi9ssmWfPX8fg2e0AwqKHFs3fNhx0y2+FbW+U6hDoZe2KEyCQlfhigozrLTjxC2eTLo8bQfbyE7DPoAgtKdv259nGayBqg4L6KL2r/CdReHFHMvErsuBSXLWHLaXsPrg0a00l+7jHQ/Be1SC15WJHWOIOAnHolIOLT0SfQA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724678784; c=relaxed/simple; bh=nHDRK+VjH0qEIIYJx4D/jZm2tnVHKK1joHijjtltUPs=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; b=TftWVMVrn5zI/RLPv4dx0I05P7w+M4UbuA2upK2uEM6MJlUl+5kkkBt5DdTwYksrLLS2G8NWKgOX6gSDHH0XlS33BpumOWcUWtLcDwusqOZN7KpUKhAMJFtOQ5blYjGd1lcGh5BobNAc6Wt/29dh1YHfCpjg2foNSBc4avE8ie8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=gpxsee.org; spf=pass smtp.mailfrom=gpxsee.org; arc=none smtp.client-ip=37.205.14.76 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=gpxsee.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gpxsee.org Received: from mgb4.. (unknown [62.77.71.229]) by mx.gpxsee.org (Postfix) with ESMTPSA id D2F6B2B0C2; Mon, 26 Aug 2024 15:26:13 +0200 (CEST) From: tumic@gpxsee.org To: Mauro Carvalho Chehab , Hans Verkuil Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, 11162571@vivo.com, =?utf-8?q?Martin_T=C5=AFma?= Subject: [PATCH 0/1] media: mgb4: Fix debugfs error handling Date: Mon, 26 Aug 2024 15:26:03 +0200 Message-ID: <20240826132604.3240-1-tumic@gpxsee.org> X-Mailer: git-send-email 2.46.0 Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-LSpam-Score: -6.2 (------) X-LSpam-Report: No, score=-6.2 required=5.0 tests=ARC_SIGNED=0.001,ARC_VALID=-0.1,BAYES_00=-1.9,DMARC_MISSING=0.001,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1,RCVD_IN_VALIDITY_CERTIFIED=-3,RCVD_IN_VALIDITY_RPBL=1.31,RCVD_IN_VALIDITY_SAFE=-2,SPF_HELO_NONE=0.001,SPF_PASS=-0.001 autolearn=ham autolearn_force=no From: Martin Tůma This patch handles multiple mgb4 debugfs error handling bugs including the issues from the two patches from Yang Ruibin: https://patchwork.linuxtv.org/project/linux-media/patch/20240821071100.7839-1-11162571@vivo.com/ https://patchwork.linuxtv.org/project/linux-media/patch/20240821072944.9275-1-11162571@vivo.com/ Additionally it removes the #ifdef CONFIG_DEBUG_FS lines where possible as requested by Hans Verkuil. Martin Tůma (1): media: mgb4: Fix debugfs error handling drivers/media/pci/mgb4/mgb4_core.c | 8 ++------ drivers/media/pci/mgb4/mgb4_core.h | 2 -- drivers/media/pci/mgb4/mgb4_vin.c | 25 ++++++++++--------------- drivers/media/pci/mgb4/mgb4_vin.h | 1 - drivers/media/pci/mgb4/mgb4_vout.c | 25 ++++++++++--------------- drivers/media/pci/mgb4/mgb4_vout.h | 1 - 6 files changed, 22 insertions(+), 40 deletions(-) base-commit: ea2e2ea551abf0ce8350f82e8cd431b7f8a1e5e9