]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/buddy: replace drm_print.h include with a forward declaration
authorJani Nikula <jani.nikula@intel.com>
Wed, 29 Oct 2025 10:39:46 +0000 (12:39 +0200)
committerJani Nikula <jani.nikula@intel.com>
Fri, 31 Oct 2025 08:34:55 +0000 (10:34 +0200)
The drm_buddy.h header does not really need anything from drm_print.h. A
simple forward declaration for struct drm_printer is sufficient.

An explicit drm_print.h include has previously been added to all the
files that indirectly depended on this include.

v3: Only remove the include here (Thomas)

Cc: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://lore.kernel.org/r/b303996b407fcbe2c7357bea036f79c45d6dae49.1761734313.git.jani.nikula@intel.com
include/drm/drm_buddy.h

index c2e05a28125224855c67fa8dec13e49fad5ae80f..b909fa8f810a03830f8c4e926a6f07030ec17dca 100644 (file)
@@ -12,7 +12,7 @@
 #include <linux/sched.h>
 #include <linux/rbtree.h>
 
-#include <drm/drm_print.h>
+struct drm_printer;
 
 #define DRM_BUDDY_RANGE_ALLOCATION             BIT(0)
 #define DRM_BUDDY_TOPDOWN_ALLOCATION           BIT(1)