Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/drm/i915_drv.c
          +++ new/usr/src/uts/intel/io/drm/i915_drv.c
↓ open down ↓ 116 lines elided ↑ open up ↑
 117  117          i915_quiesce,   /* devo_quiesce */
 118  118  };
 119  119  
 120  120  static struct modldrv modldrv = {
 121  121          &mod_driverops,                 /* drv_modops */
 122  122          "I915 DRM driver",      /* drv_linkinfo */
 123  123          &i915_dev_ops,                  /* drv_dev_ops */
 124  124  };
 125  125  
 126  126  static struct modlinkage modlinkage = {
 127      -        MODREV_1, (void *) &modldrv, NULL
      127 +        MODREV_1, { (void *) &modldrv, NULL }
 128  128  };
 129  129  
 130  130  static ddi_device_acc_attr_t s3_attr = {                              
 131  131          DDI_DEVICE_ATTR_V0,                                                     
 132  132          DDI_NEVERSWAP_ACC,                                                      
 133  133          DDI_STRICTORDER_ACC     /* must be DDI_STRICTORDER_ACC */               
 134  134  }; 
 135  135  
 136  136  /*
 137  137   * softstate head
↓ open down ↓ 906 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX