From efb48a61aa7743f64372d9c72364cbdda869bf72 Mon Sep 17 00:00:00 2001 From: jsg Date: Fri, 10 Jun 2022 00:50:50 +0000 Subject: [PATCH] add struct kobj_attribute required for 5.15.46 inteldrm --- sys/dev/pci/drm/include/linux/kobject.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/pci/drm/include/linux/kobject.h b/sys/dev/pci/drm/include/linux/kobject.h index 48a308a5fd0..310b3b53a57 100644 --- a/sys/dev/pci/drm/include/linux/kobject.h +++ b/sys/dev/pci/drm/include/linux/kobject.h @@ -16,6 +16,9 @@ struct kobj_type { void (*release)(struct kobject *); }; +struct kobj_attribute { +}; + static inline void kobject_init(struct kobject *obj, struct kobj_type *type) { -- 2.20.1