aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/bln.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/bln.h')
-rw-r--r--include/linux/bln.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/bln.h b/include/linux/bln.h
new file mode 100644
index 0000000..a5de5e4
--- /dev/null
+++ b/include/linux/bln.h
@@ -0,0 +1,13 @@
+/* include/linux/bln.h */
+
+#ifndef _LINUX_BLN_H
+#define _LINUX_BLN_H
+
+struct bln_implementation {
+ void (*enable)(void);
+ void (*disable)(void);
+};
+
+void register_bln_implementation(struct bln_implementation *imp);
+bool bln_is_ongoing(void);
+#endif