We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 183d9dc commit ecb2e2fCopy full SHA for ecb2e2f
drivers/gpu/drm/drm_internal.h
@@ -26,6 +26,8 @@
26
#define DRM_IF_MAJOR 1
27
#define DRM_IF_MINOR 4
28
29
+#define DRM_IF_VERSION(maj, min) (maj << 16 | min)
30
+
31
struct drm_prime_file_private;
32
struct dma_buf;
33
include/drm/drmP.h
@@ -94,8 +94,6 @@ struct dma_buf_attachment;
94
struct pci_dev;
95
struct pci_controller;
96
97
-#define DRM_IF_VERSION(maj, min) (maj << 16 | min)
98
-
99
#define DRM_SWITCH_POWER_ON 0
100
#define DRM_SWITCH_POWER_OFF 1
101
#define DRM_SWITCH_POWER_CHANGING 2
0 commit comments