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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/igb/igb_main.c
          +++ new/usr/src/uts/common/io/igb/igb_main.c
↓ open down ↓ 173 lines elided ↑ open up ↑
 174  174          igb_quiesce,    /* devo_quiesce */
 175  175  };
 176  176  
 177  177  static struct modldrv igb_modldrv = {
 178  178          &mod_driverops,         /* Type of module.  This one is a driver */
 179  179          ident,                  /* Discription string */
 180  180          &igb_dev_ops,           /* driver ops */
 181  181  };
 182  182  
 183  183  static struct modlinkage igb_modlinkage = {
 184      -        MODREV_1, &igb_modldrv, NULL
      184 +        MODREV_1, { &igb_modldrv, NULL }
 185  185  };
 186  186  
 187  187  /* Access attributes for register mapping */
 188  188  ddi_device_acc_attr_t igb_regs_acc_attr = {
 189  189          DDI_DEVICE_ATTR_V1,
 190  190          DDI_STRUCTURE_LE_ACC,
 191  191          DDI_STRICTORDER_ACC,
 192  192          DDI_FLAGERR_ACC
 193  193  };
 194  194  
↓ open down ↓ 5174 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX