From patchwork Fri Oct 11 20:16:39 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Davis X-Patchwork-Id: 13833124 Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) (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 9F1BD1CEAD1 for ; Fri, 11 Oct 2024 20:17:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.47.23.249 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728677835; cv=none; b=JoqCstGpmknvoe8hEfp6DEEHbKfQ85W4pTiF8292mU5cQ40oxgYT6Sz1RmyNJYLp1hLeoO/5bQupyvb3Lt6p6I1M63drRQ7a+p2tUdM7I6uCkAfNkGsGA8mIym+FeVoGjMvZYpbLCjG8AckYz9VIrdhQO5IbSWOzguzftXt7nlI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728677835; c=relaxed/simple; bh=FrG8EownqOV+2sB6g3ZKuECIwdP4tFnbb8ZQk58EUmo=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=HMDv3rX+KAf8uKFKUSVit/T4oc9SVTdP1Z1RE+PJqHimyu0MIjOJ9wG54SrkifiScC3/hrlZxBoDxo/bs98bb5I+jXEYV4hMXxb9LHNyfECgrTSzxCSoGe/XNBOGWF1a67yqXnwyMHL2IqfUoCfs3+1rtvnyeIzR3zfIpQkmvmE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=ti.com; spf=pass smtp.mailfrom=ti.com; dkim=pass (1024-bit key) header.d=ti.com header.i=@ti.com header.b=K8so7zOw; arc=none smtp.client-ip=198.47.23.249 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=ti.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=ti.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=ti.com header.i=@ti.com header.b="K8so7zOw" Received: from lelv0266.itg.ti.com ([10.180.67.225]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 49BKGlKo029265; Fri, 11 Oct 2024 15:16:47 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1728677807; bh=Xp3T/ynIa7YSFa8v+/vcDQmP+Jv77elTldb8NxYZSxs=; h=From:To:CC:Subject:Date; b=K8so7zOwv1rR1Ub9k8dPpKQA2S7HWTt0m3OyBrK7pImAaCcqRlKFxx/afvizTVqF3 UeiKH4YYASvcVap6wClg3jeviWNWjmDMOq6VMi0Ben8kpUz5STFgMgBtyeZs9+/lut /vysz5XWIzBRGl9CdR7D5D6ZnEpgdOlAi+qKArVE= Received: from DFLE115.ent.ti.com (dfle115.ent.ti.com [10.64.6.36]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTP id 49BKGlXf071093; Fri, 11 Oct 2024 15:16:47 -0500 Received: from DFLE113.ent.ti.com (10.64.6.34) by DFLE115.ent.ti.com (10.64.6.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Fri, 11 Oct 2024 15:16:47 -0500 Received: from lelvsmtp6.itg.ti.com (10.180.75.249) by DFLE113.ent.ti.com (10.64.6.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Fri, 11 Oct 2024 15:16:47 -0500 Received: from fllvsmtp7.itg.ti.com ([10.249.42.149]) by lelvsmtp6.itg.ti.com (8.15.2/8.15.2) with ESMTP id 49BKGkCG102075; Fri, 11 Oct 2024 15:16:46 -0500 From: Andrew Davis To: Andre Przywara , Russell King , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , Andrew Lunn , Sebastian Hesselbarth , Gregory Clement , Daniel Mack , Haojian Zhuang , Robert Jarzmik CC: , , , Andrew Davis Subject: [PATCH v3 0/6] Switch more ARM plats to sys-off handler API Date: Fri, 11 Oct 2024 15:16:39 -0500 Message-ID: <20241011201645.797394-1-afd@ti.com> X-Mailer: git-send-email 2.39.2 Precedence: bulk X-Mailing-List: imx@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea Hello all, Continuing the quest to remove the legacy pm_power_off() global function handler. Remove uses from arch/arm/ using the helper register_platform_power_off(). Thanks, Andrew Changes for v3: - Rebase on v6.12-rc1 Changes for v2: - Collect Reviewed/Acked-bys - Rebase on v6.11-rc1 Andrew Davis (6): ARM: highbank: Switch to new sys-off handler API ARM: imx: Switch to new sys-off handler API ARM: pxa: Switch to new sys-off handler API ARM: sa1100: Switch to new sys-off handler API ARM: vt8500: Switch to new sys-off handler API arm/xen: Switch to new sys-off handler API arch/arm/mach-highbank/highbank.c | 2 +- arch/arm/mach-imx/pm-imx6.c | 6 ++---- arch/arm/mach-pxa/spitz.c | 2 +- arch/arm/mach-sa1100/generic.c | 2 +- arch/arm/mach-vt8500/vt8500.c | 2 +- arch/arm/xen/enlighten.c | 2 +- 6 files changed, 7 insertions(+), 9 deletions(-)