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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/e1000g/e1000g_main.c
          +++ new/usr/src/uts/common/io/e1000g/e1000g_main.c
↓ open down ↓ 216 lines elided ↑ open up ↑
 217  217          e1000g_quiesce          /* devo_quiesce */
 218  218  };
 219  219  
 220  220  static struct modldrv modldrv = {
 221  221          &mod_driverops,         /* Type of module.  This one is a driver */
 222  222          ident,                  /* Discription string */
 223  223          &ws_ops,                /* driver ops */
 224  224  };
 225  225  
 226  226  static struct modlinkage modlinkage = {
 227      -        MODREV_1, &modldrv, NULL
      227 +        MODREV_1, { &modldrv, NULL }
 228  228  };
 229  229  
 230  230  /* Access attributes for register mapping */
 231  231  static ddi_device_acc_attr_t e1000g_regs_acc_attr = {
 232  232          DDI_DEVICE_ATTR_V1,
 233  233          DDI_STRUCTURE_LE_ACC,
 234  234          DDI_STRICTORDER_ACC,
 235  235          DDI_FLAGERR_ACC
 236  236  };
 237  237  
↓ open down ↓ 6345 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX