|
@@ -1016,6 +1016,7 @@ static int compat_drm_wait_vblank(struct file *file, unsigned int cmd,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+#if defined(CONFIG_X86) || defined(CONFIG_IA64)
|
|
|
typedef struct drm_mode_fb_cmd232 {
|
|
|
u32 fb_id;
|
|
|
u32 width;
|
|
@@ -1072,6 +1073,7 @@ static int compat_drm_mode_addfb2(struct file *file, unsigned int cmd,
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
static drm_ioctl_compat_t *drm_compat_ioctls[] = {
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_VERSION32)] = compat_drm_version,
|
|
@@ -1105,7 +1107,9 @@ static drm_ioctl_compat_t *drm_compat_ioctls[] = {
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_UPDATE_DRAW32)] = compat_drm_update_draw,
|
|
|
#endif
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_WAIT_VBLANK32)] = compat_drm_wait_vblank,
|
|
|
+#if defined(CONFIG_X86) || defined(CONFIG_IA64)
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_MODE_ADDFB232)] = compat_drm_mode_addfb2,
|
|
|
+#endif
|
|
|
};
|
|
|
|
|
|
/**
|