• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/module.h>
4 #include <linux/init.h>
5 
rbd_init(void)6 static int __init rbd_init(void)
7 {
8 	pr_warn("Using Rust Binder dummy module");
9 	return 0;
10 }
11 
12 module_init(rbd_init);
13 MODULE_DESCRIPTION("Dummy Rust Binder module");
14 MODULE_LICENSE("GPL");
15 MODULE_AUTHOR("Alice Ryhl <aliceryhl@google.com>");
16