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 830E6466B6F; Sat, 28 Feb 2026 15:19:11 +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=1772291951; cv=none; b=kd7hjYAWmdTyVHVb2ur5j/nvSSUkY21Qqq2KT/L9amA0L4T2F1XM8BqqVUO3BbTuXwj+SiHq467hCUJT32tVFlhGo0qEcZYU1Z8GJ7LR8Aa0sSuQnYF8Hgd63C4b2BlwoXAb3sP8zD1SyRW8kKCcSHXqYFSNJzA5jaUJoZkf5Ho= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772291951; c=relaxed/simple; bh=3PzrQdCM4XI06JvkyfnpMeZS3dKy+BC0JnLn2bj4xXo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; b=eeFICeJp/7q1RvevfvJJzTtTMPo5XN48mXjcuM5/QgPokyEeS8L8AOiJVBLFXm9mm3Y8LFaIc73pdimO2bILbfSjI00FbtxyPDZXppr0sJhDdXu5PcPjVOEcZE8Rw22s9u7+Spmgr0MHA20Ym8VAZjXTilQml7iHmypmGAVXh+M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Lcp9Tl2X; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Lcp9Tl2X" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1431FC2BC86; Sat, 28 Feb 2026 15:19:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772291951; bh=3PzrQdCM4XI06JvkyfnpMeZS3dKy+BC0JnLn2bj4xXo=; h=From:To:Cc:Subject:Date:From; b=Lcp9Tl2XgKphe5EDzebuuhduyfOafqqZpQPU1D134llSOHE8R3c+jT3mvrJiOIhya ieals/f7OoNjAeD3ydWyxNqGK6j8+9ub63IbPTA2FBSsDO1vVUGRCEg794x/QgrnOy aiBVNi91osTnjNk0FNF2bjfS+oyb3Fa2njhplaU4MRW6ZMLNFoczweFv8QL3n3pr2E xzxiGqtLXJLie+h2NLausw39zoCRTj0pXOlcTz8GZ0KdxjkypyvrNkkqhkWr48bUGq fMpBUf776+v9WxGQBY6PvNyKJvo9Erpccgl39fm566mHYYSO6YRKpDaAe83wuDGc7P JC6M/X/iflA3w== From: "Rafael J. Wysocki" To: Ilpo =?ISO-8859-1?Q?J=E4rvinen?= Cc: Hans de Goede , LKML , Linux ACPI , platform-driver-x86@vger.kernel.org Subject: [PATCH v1 0/2] platform/x86: acer-wireless: Bind to a platform device instead of an ACPI one Date: Sat, 28 Feb 2026 16:17:06 +0100 Message-ID: <3406021.44csPzL39Z@rafael.j.wysocki> Organization: Linux Kernel Development Precedence: bulk X-Mailing-List: linux-acpi@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Hi All, This series is part of a larger effort to switch over all drivers using the struct acpi_driver interface to the more common struct platform_driver interface and eliminate the former. The background is explained in Documentation/driver-api/acpi/acpi-drivers.rst and in the changelog of the patch that introduced the above document: https://lore.kernel.org/all/2396510.ElGaqSPkdT@rafael.j.wysocki/ The bottom line is that the kernel would be better off without struct acpi_driver and so it is better to get rid of it. This series carries out driver conversion of the platform x86 acer-wireless driver. Patch [1/2] updates the driver to install an ACPI notify handler by itself instead of using the .notify() callback from struct acpi_driver, which is requisite for the driver conversion. Patch [2/2] converts the driver to using struct platform_driver for device binding. Thanks!