Use unsigned long instead of u64 in drm_modeset_ctl_t
authorJesse Barnes <jesse.barnes@intel.com>
Thu, 1 Nov 2007 22:02:26 +0000 (15:02 -0700)
committerJesse Barnes <jesse.barnes@intel.com>
Thu, 1 Nov 2007 22:02:26 +0000 (15:02 -0700)
A bad idea, ABI-wise, but we're going to be changing this structure anyway
before we merge upstream, so just fix the build for now.

shared-core/drm.h

index 3092e53..cbd6a94 100644 (file)
@@ -565,7 +565,7 @@ typedef enum {
  * \sa drmModesetCtl().
  */
 typedef struct drm_modeset_ctl {
-       u64 arg;
+       unsigned long arg;
        drm_modeset_ctl_cmd_t cmd;
 } drm_modeset_ctl_t;