git: 3a8e16e47b41 - stable/13 - linuxkpi: Declare `struct fwnode_handle` in <linux/fwnode.h>
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 16 Feb 2023 11:56:36 UTC
The branch stable/13 has been updated by dumbbell (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=3a8e16e47b41b27c8ccf4a3dc66656d9b19fa764
commit 3a8e16e47b41b27c8ccf4a3dc66656d9b19fa764
Author: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
AuthorDate: 2023-02-13 20:51:00 +0000
Commit: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
CommitDate: 2023-02-16 11:55:21 +0000
linuxkpi: Declare `struct fwnode_handle` in <linux/fwnode.h>
Reviewed by: manu
Approved by: manu
Differential Revision: https://reviews.freebsd.org/D38566
(cherry picked from commit 7d03acf065ed96fd04a54bf8e1c83a032ffed097)
---
sys/compat/linuxkpi/common/include/linux/device.h | 2 +-
sys/compat/linuxkpi/common/include/linux/fwnode.h | 10 ++++++++++
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/sys/compat/linuxkpi/common/include/linux/device.h b/sys/compat/linuxkpi/common/include/linux/device.h
index 01a1729830c4..d91c14bd87b7 100644
--- a/sys/compat/linuxkpi/common/include/linux/device.h
+++ b/sys/compat/linuxkpi/common/include/linux/device.h
@@ -48,13 +48,13 @@
#include <linux/pm.h>
#include <linux/idr.h>
#include <linux/ratelimit.h> /* via linux/dev_printk.h */
+#include <linux/fwnode.h>
#include <asm/atomic.h>
#include <sys/bus.h>
#include <sys/backlight.h>
struct device;
-struct fwnode_handle;
struct class {
const char *name;
diff --git a/sys/compat/linuxkpi/common/include/linux/fwnode.h b/sys/compat/linuxkpi/common/include/linux/fwnode.h
new file mode 100644
index 000000000000..a1fbc1b6d6a3
--- /dev/null
+++ b/sys/compat/linuxkpi/common/include/linux/fwnode.h
@@ -0,0 +1,10 @@
+/* Public domain. */
+
+#ifndef _LINUXKPI_LINUX_FWNODE_H_
+#define _LINUXKPI_LINUX_FWNODE_H_
+
+struct fwnode_handle {
+ struct fwnode_handle *secondary;
+};
+
+#endif /* _LINUXKPI_LINUX_FWNODE_H_ */