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 39F05221DAC; Fri, 20 Jun 2025 22:06:48 +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=1750457209; cv=none; b=DVs2cN8C7ZXw+BejlPFCfFq0lgLIIaa9mp5i+3iLLdQaWf7ptWsEdctMZ6AjoZ8rEJHlFDkwiEI4/mJv51hi5DKtdHUgAcXVtFljAG0T6b513/SU0vppuEWd0TQ3qBF+OivJCObgt34XrP9T95u9mskHbuYJyGU0fO0bRBhDBc4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750457209; c=relaxed/simple; bh=eE3jajaJNedzuZV2q+noRIBA/GEx5wr6lDpsRW4JnuU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=CQ4cMd/JkbVXfIYZVVk6cbvWyJ4ATPIUyzDLF7/M4H1ey+ZK4SDm9PdTqYhfYksEIoFfvq1Z7fuCVdG3l0qYFz61ZU9FHqF+fEaQ1EiF9rQQ1caOATddY4+f1LSW0HZQntlgjmcR86aRe91bW3s9igpF1l1/GPHhBxBGvQt3dEU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GZPhJTzG; 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="GZPhJTzG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 08439C4CEE3; Fri, 20 Jun 2025 22:06:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1750457208; bh=eE3jajaJNedzuZV2q+noRIBA/GEx5wr6lDpsRW4JnuU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=GZPhJTzG+rjZ/ksx00F7qb+fGO7UMyEYCOBCzqeK0z8fQfLrmtNo2wQRQTF/Tzwou GpWbpmZkxxeDQyh0gxI9+t+Ng1l/er9u483F7D3NL3KoO9w5W5HNQiAdNDgDegybUt l0CY+FUjiCob7yrbWAqTJBf1mMXliS5Wx7aSVLlMy6WFytBfFmnwvajPkEVto3S9Ss 4QivkrIa/HRrTudrZoGxyLQqP83dkjASNxw7zZR0YWW45N9UN/WRYQwbIOWS5OW4A/ m59pq/ZmbM913crcqhVp4fydUXW4nL2Ii/9UtYVRo/Q1qH68VMK/258vu3XPHJCpBd y2l0AANJ4JSog== Date: Sat, 21 Jun 2025 00:06:40 +0200 From: Danilo Krummrich To: Igor Korotin , "Rafael J . Wysocki" Cc: Alex Gaynor , Greg Kroah-Hartman , Miguel Ojeda , Rob Herring , Saravana Kannan , Alex Hung , Andrew Morton , Jakub Kicinski , Jonathan Cameron , Krzysztof Kozlowski , Mauro Carvalho Chehab , Remo Senekowitsch , Tamir Duberstein , Viresh Kumar , Wedson Almeida Filho , Xiangfei Ding , devicetree@vger.kernel.org, linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, rust-for-linux@vger.kernel.org, =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Alice Ryhl , Andreas Hindborg , Benno Lossin , Boqun Feng , Gary Guo , Len Brown , Trevor Gross Subject: Re: [PATCH v8 4/9] rust: acpi: add `acpi::DeviceId` abstraction Message-ID: References: <20250620150914.276272-1-igor.korotin.linux@gmail.com> <20250620152425.285683-1-igor.korotin.linux@gmail.com> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250620152425.285683-1-igor.korotin.linux@gmail.com> On Fri, Jun 20, 2025 at 04:24:25PM +0100, Igor Korotin wrote: > `acpi::DeviceId` is an abstraction around `struct acpi_device_id`. > > This is used by subsequent patches, in particular the i2c driver > abstractions, to create ACPI device ID tables. I think this should say something like "Enable drivers to build ACPI device ID tables, to be consumed by the corresponding bus abstractions, such as platform or I2C." instead. If we agree, I can change it when applying the patch -- no need to resend. > > Signed-off-by: Igor Korotin @Rafael: Can I get an ACK for this one, such that I can take it together with all other patches through the driver-core tree?