From nobody Wed Sep 10 01:54:44 2025 Received: from out-170.mta1.migadu.com (out-170.mta1.migadu.com [95.215.58.170]) (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 E78C41C863B for ; Mon, 8 Sep 2025 20:42:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.170 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757364170; cv=none; b=YX+G0Qz7guaeadKou4ZhK2EuEj2Ed3l39qId1dC40izJd3oe0ZY+PYGkm07+XLVKREzbnZbn8lPSgzzIh2zyAJbDiPDrzKnvkGLWg/OcngyxEiw915CEVb0lMw/Msh6jqXq16x3rkskRoXOcmlZwI6XEtYIqyIUMtbA7vdQJmH4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757364170; c=relaxed/simple; bh=ed96sy/6LOck+wUhbL7YfzNYa8GastaiVEYRq6cpaiA=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=lILsUQwtvNDXgDbveXN6qr49BuHrqRFm/S+3WgmDwbh99zpNRgeDrLCCdeQLp1By+x9lyVuoVdOJl8H7Fc7l/8nTPPUa2lr2fDz+r0VRaRGKwWunEPsNf9K0UZVZEOKYjmUE3o38UQLWid/Sv9huFNd2tc1Ras9rAEhBsZjvnyw= 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=jg/+o7q9; arc=none smtp.client-ip=95.215.58.170 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="jg/+o7q9" 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=1757364166; 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=jD6ByExhZVwQlGpLHFGQjP44ok8RQvvCqWB7DPZxKZ8=; b=jg/+o7q9dj/+8g+9xTe/qdOqGgLHCUcmMv5/6CNKBrTiX2j8yuA1no+qEOhGceuPG9+1q1 5DMxdPdExMhbky7lRx/X07zWWx0/rSc0JA+Dr6L/RWOOG/SGrMdsnHnrl8/BCyr3/DXyPi iShxSJDuQ4DEIONvkTi7Zldnc6bnUTA= From: Thorsten Blum To: Julia Lawall , Nicolas Palix Cc: Thorsten Blum , cocci@inria.fr, linux-kernel@vger.kernel.org Subject: [PATCH] Coccinelle: pm_runtime: Fix typo in report message Date: Mon, 8 Sep 2025 22:42:23 +0200 Message-ID: <20250908204225.476116-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/ 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.0