Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm: add missing header guards to drm_crtc_internal.h

Including the file twice can lead to errors.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/7ad51d9fb9c42c9901c5c1d5d16e32e857da9758.1709898638.git.jani.nikula@intel.com

+5
+5
drivers/gpu/drm/drm_crtc_internal.h
··· 32 32 * and are not exported to drivers. 33 33 */ 34 34 35 + #ifndef __DRM_CRTC_INTERNAL_H__ 36 + #define __DRM_CRTC_INTERNAL_H__ 37 + 35 38 #include <linux/err.h> 36 39 #include <linux/types.h> 37 40 ··· 308 305 return ERR_PTR(-ENOENT); 309 306 } 310 307 #endif 308 + 309 + #endif /* __DRM_CRTC_INTERNAL_H__ */