From nobody Tue Dec 2 01:04:50 2025 Received: from out-181.mta0.migadu.com (out-181.mta0.migadu.com [91.218.175.181]) (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 0D27125A341 for ; Sat, 22 Nov 2025 11:49:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.181 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763812196; cv=none; b=HKdDG15c0xS+yECwZmlBP/1PSqF2ADExlV9/euCTDnq2fjICc04FRrzbHjMxfrPVnuEZfz2uxJEIxYMKWmbx7Dh++S3hq+UoeviS6TpHzxj4vDuSu341wOLzse2J3YrI/ngmTxdcPTLb00f1AJk4kqd70owaRH+UBc5O3cmUYO4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763812196; c=relaxed/simple; bh=syMQPtgMumidGvjbiOrq+/H+Z9i02ZR5OK9ZnBuKjYU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=uAdx2q4czREncpNtEzTQAtnnEHGXzKUhss/5HDUFBLpv84+wxeFo/azLTXqGkGY1Tr1e1sl9fAT2iItTyDueK/BlgBfahUcNdkmk2tQg7iMMloCJCWzqwKXOzxkSwlXkd2j8G+ADAFmG8R7bxaprMB3220JiA7prd0+czaUgLi4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=bddVMRaK; arc=none smtp.client-ip=91.218.175.181 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="bddVMRaK" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1763812192; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=cydIk6Z1z9GXF5ZLDMKKZHeBCtPJ+8n4DUMOXggGlk0=; b=bddVMRaKV/LVrbO8c9vUadaF8hiVkBuCrrCaJT8NZeB28ih/MiVqzd4uubTuXxRDu0g8Po dji1j0DPRlijNqPufDGyHlV3/sPQKAnq3UcXGcdxVF2y2FgBFSjihKctYNTOlQFGWFBRg3 LDFXPhZw9/kxSHuEDDrZiWJdQ1lh0uU= From: Thorsten Blum To: Julia Lawall , Nicolas Palix Cc: Thorsten Blum , Julia Lawall , cocci@inria.fr, linux-kernel@vger.kernel.org Subject: [PATCH RESEND] Coccinelle: pm_runtime: Fix typo in report message Date: Sat, 22 Nov 2025 12:48:04 +0100 Message-ID: <20251122114806.447303-2-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" s/Unecessary/Unnecessary/ Reviewed-by: Julia Lawall Signed-off-by: Thorsten Blum --- scripts/coccinelle/api/pm_runtime.cocci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/coccinelle/api/pm_runtime.cocci b/scripts/coccinelle/a= pi/pm_runtime.cocci index 2c931e748dda..e29ac3a87d96 100644 --- a/scripts/coccinelle/api/pm_runtime.cocci +++ b/scripts/coccinelle/api/pm_runtime.cocci @@ -110,5 +110,5 @@ p2 << r.p2; pm_runtime_api << r.pm_runtime_api; @@ =20 -msg =3D "%s returns < 0 as error. Unecessary IS_ERR_VALUE at line %s" % (p= m_runtime_api, p2[0].line) +msg =3D "%s returns < 0 as error. Unnecessary IS_ERR_VALUE at line %s" % (= pm_runtime_api, p2[0].line) coccilib.report.print_report(p1[0],msg) --=20 2.51.1