public inbox for rust-for-linux@vger.kernel.org
 help / color / mirror / Atom feed
From: Alice Ryhl <aliceryhl@google.com>
To: rust-for-linux@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Alice Ryhl <aliceryhl@google.com>,
	 Boqun Feng <boqun.feng@gmail.com>, Gary Guo <gary@garyguo.net>,
	 Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	linux-clk@vger.kernel.org
Subject: [PATCH v2 04/27] rust: clk: add __rust_helper to helpers
Date: Mon, 05 Jan 2026 12:42:17 +0000	[thread overview]
Message-ID: <20260105-define-rust-helper-v2-4-51da5f454a67@google.com> (raw)
In-Reply-To: <20260105-define-rust-helper-v2-0-51da5f454a67@google.com>

This is needed to inline these helpers into Rust code.

Reviewed-by: Boqun Feng <boqun.feng@gmail.com>
Reviewed-by: Gary Guo <gary@garyguo.net>
Signed-off-by: Alice Ryhl <aliceryhl@google.com>
---
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: linux-clk@vger.kernel.org
---
 rust/helpers/clk.c | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/rust/helpers/clk.c b/rust/helpers/clk.c
index 6d04372c9f3bbc4355c86eda5b1ebd7576d26442..15fd7e469cddf2e10d9e996c5055c7afb219e68c 100644
--- a/rust/helpers/clk.c
+++ b/rust/helpers/clk.c
@@ -7,60 +7,62 @@
  * CONFIG_HAVE_CLK or CONFIG_HAVE_CLK_PREPARE aren't set.
  */
 #ifndef CONFIG_HAVE_CLK
-struct clk *rust_helper_clk_get(struct device *dev, const char *id)
+__rust_helper struct clk *rust_helper_clk_get(struct device *dev,
+					      const char *id)
 {
 	return clk_get(dev, id);
 }
 
-void rust_helper_clk_put(struct clk *clk)
+__rust_helper void rust_helper_clk_put(struct clk *clk)
 {
 	clk_put(clk);
 }
 
-int rust_helper_clk_enable(struct clk *clk)
+__rust_helper int rust_helper_clk_enable(struct clk *clk)
 {
 	return clk_enable(clk);
 }
 
-void rust_helper_clk_disable(struct clk *clk)
+__rust_helper void rust_helper_clk_disable(struct clk *clk)
 {
 	clk_disable(clk);
 }
 
-unsigned long rust_helper_clk_get_rate(struct clk *clk)
+__rust_helper unsigned long rust_helper_clk_get_rate(struct clk *clk)
 {
 	return clk_get_rate(clk);
 }
 
-int rust_helper_clk_set_rate(struct clk *clk, unsigned long rate)
+__rust_helper int rust_helper_clk_set_rate(struct clk *clk, unsigned long rate)
 {
 	return clk_set_rate(clk, rate);
 }
 #endif
 
 #ifndef CONFIG_HAVE_CLK_PREPARE
-int rust_helper_clk_prepare(struct clk *clk)
+__rust_helper int rust_helper_clk_prepare(struct clk *clk)
 {
 	return clk_prepare(clk);
 }
 
-void rust_helper_clk_unprepare(struct clk *clk)
+__rust_helper void rust_helper_clk_unprepare(struct clk *clk)
 {
 	clk_unprepare(clk);
 }
 #endif
 
-struct clk *rust_helper_clk_get_optional(struct device *dev, const char *id)
+__rust_helper struct clk *rust_helper_clk_get_optional(struct device *dev,
+						       const char *id)
 {
 	return clk_get_optional(dev, id);
 }
 
-int rust_helper_clk_prepare_enable(struct clk *clk)
+__rust_helper int rust_helper_clk_prepare_enable(struct clk *clk)
 {
 	return clk_prepare_enable(clk);
 }
 
-void rust_helper_clk_disable_unprepare(struct clk *clk)
+__rust_helper void rust_helper_clk_disable_unprepare(struct clk *clk)
 {
 	clk_disable_unprepare(clk);
 }

-- 
2.52.0.351.gbe84eed79e-goog


  parent reply	other threads:[~2026-01-05 12:42 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-05 12:42 [PATCH v2 00/27] Allow inlining C helpers into Rust when using LTO Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 01/27] rust: barrier: add __rust_helper to helpers Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 02/27] rust: blk: " Alice Ryhl
2026-01-07 10:53   ` Andreas Hindborg
2026-01-05 12:42 ` [PATCH v2 03/27] rust: bug: " Alice Ryhl
2026-01-05 12:42 ` Alice Ryhl [this message]
2026-02-07  2:14   ` [PATCH v2 04/27] rust: clk: " Stephen Boyd
2026-01-05 12:42 ` [PATCH v2 05/27] rust: completion: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 06/27] rust: cpu: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 07/27] rust: cred: " Alice Ryhl
2026-01-07  1:25   ` Paul Moore
2026-01-07  1:29     ` Paul Moore
2026-01-07  6:53       ` Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 08/27] rust: err: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 09/27] rust: jump_label: " Alice Ryhl
2026-02-10 17:54   ` Miguel Ojeda
2026-02-10 20:26     ` Peter Zijlstra
2026-02-10 23:11       ` Miguel Ojeda
2026-01-05 12:42 ` [PATCH v2 10/27] rust: maple_tree: " Alice Ryhl
2026-01-05 15:09   ` Liam R. Howlett
2026-01-05 12:42 ` [PATCH v2 11/27] rust: mm: " Alice Ryhl
2026-01-05 15:10   ` Liam R. Howlett
2026-01-05 15:22     ` Lorenzo Stoakes
2026-01-05 12:42 ` [PATCH v2 12/27] rust: of: " Alice Ryhl
2026-01-12 16:26   ` Rob Herring
2026-01-05 12:42 ` [PATCH v2 13/27] rust: processor: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 14/27] rust: pwm: " Alice Ryhl
2026-01-05 17:09   ` Michal Wilczynski
2026-01-20 18:02   ` Uwe Kleine-König
2026-01-05 12:42 ` [PATCH v2 15/27] rust: rbtree: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 16/27] rust: rcu: " Alice Ryhl
2026-01-05 15:26   ` Joel Fernandes
2026-01-05 12:42 ` [PATCH v2 17/27] rust: refcount: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 18/27] rust: security: " Alice Ryhl
2026-01-07  1:29   ` Paul Moore
2026-01-05 12:42 ` [PATCH v2 19/27] rust: slab: " Alice Ryhl
2026-01-05 12:56   ` Danilo Krummrich
2026-01-05 13:06     ` Alice Ryhl
2026-01-05 17:04       ` Miguel Ojeda
2026-01-05 12:42 ` [PATCH v2 20/27] rust: sync: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 21/27] rust: task: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 22/27] rust: time: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 23/27] rust: uaccess: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 24/27] rust: usb: " Alice Ryhl
2026-01-05 13:40   ` Daniel Almeida
2026-01-05 12:42 ` [PATCH v2 25/27] rust: wait: " Alice Ryhl
2026-01-05 12:42 ` [PATCH v2 26/27] rust: workqueue: " Alice Ryhl
2026-01-12 18:06   ` Tejun Heo
2026-01-05 12:42 ` [PATCH v2 27/27] rust: xarray: " Alice Ryhl
2026-01-05 15:26   ` Tamir Duberstein
2026-01-15  9:02   ` Andreas Hindborg
2026-01-05 15:41 ` [PATCH v2 00/27] Allow inlining C helpers into Rust when using LTO Boqun Feng
2026-01-26  5:08 ` Miguel Ojeda
2026-03-10 10:56 ` Miguel Ojeda

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260105-define-rust-helper-v2-4-51da5f454a67@google.com \
    --to=aliceryhl@google.com \
    --cc=boqun.feng@gmail.com \
    --cc=gary@garyguo.net \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=rust-for-linux@vger.kernel.org \
    --cc=sboyd@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox