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 844AA1FA24C; Tue, 14 Jan 2025 18:42:49 +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=1736880169; cv=none; b=p8liM0A0/CZoALwk9pzCh5j7ac2dhnV62jBvq4T+I+VEyZly2jjJ0r2Yaz03Rqi9srhKEhoB28pFNnYpw0HzmRsD9ZIHBmb+8hB+yQNFgKsdlsyqr5CGzoQD44VpIhNL3T2efI3gByq2sHBJm8W+9jFbiB+UHDAoFFgk30t+A6A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736880169; c=relaxed/simple; bh=nsEgk+tokJmXYdItkxdf6UTu6JJcRQbi4k1mXm6thMY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=B+sqk2sonmgSMZTGql3JpjUBYSwg4nzm+LNk1ozOWd7YBU5qUEmra7MKiiaWhn7YVLa7VP5dMW+8YHIcaHqMxW+Jw+7c7MagEfVT54cCne+LQqeuYNSEVe3QZCihgY7laV/xhLlfdYRXZydYmSk1KBvFaPtrqqwfJSOGhHLfcNU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ziXOa8bP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ziXOa8bP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 63017C4CEDD; Tue, 14 Jan 2025 18:42:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1736880169; bh=nsEgk+tokJmXYdItkxdf6UTu6JJcRQbi4k1mXm6thMY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ziXOa8bPorqXwR+ZlMLffK7JUf1aulQ/HsBKqHwJIO4WQC2PNHBcL+gXkgJJe20Jh GOtlY+9lIYfpfzqWyAvsGDpKR3vPmsmjbd9/+M6ahHu+noLy9qojGDmlruFg+sYAVR aMoJZ+2Jfvo4p2gLPfMHcE+w4EzpDLrf2/7B2XW0= Date: Tue, 14 Jan 2025 19:42:45 +0100 From: Greg Kroah-Hartman To: Viresh Kumar Cc: "Rafael J. Wysocki" , Miguel Ojeda , Alex Gaynor , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , Danilo Krummrich , linux-pm@vger.kernel.org, Vincent Guittot , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH V7 04/16] rust: device: Add property_present() Message-ID: <2025011429-gossip-hash-12e3@gregkh> References: Precedence: bulk X-Mailing-List: linux-pm@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: On Mon, Jan 13, 2025 at 04:52:59PM +0530, Viresh Kumar wrote: > This implements Device::property_present(), which calls C APIs > device_property_present() helper. > > The new helper will be used by Rust based cpufreq drivers. > > Signed-off-by: Viresh Kumar > --- > rust/bindings/bindings_helper.h | 1 + > rust/kernel/device.rs | 7 +++++++ > 2 files changed, 8 insertions(+) Want me to take this in my driver-core tree now for 6.14-rc1? thanks, greg k-h