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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ixgbe/ixgbe_main.c
          +++ new/usr/src/uts/common/io/ixgbe/ixgbe_main.c
↓ open down ↓ 180 lines elided ↑ open up ↑
 181  181          ixgbe_quiesce,          /* devo_quiesce */
 182  182  };
 183  183  
 184  184  static struct modldrv ixgbe_modldrv = {
 185  185          &mod_driverops,         /* Type of module.  This one is a driver */
 186  186          ixgbe_ident,            /* Discription string */
 187  187          &ixgbe_dev_ops          /* driver ops */
 188  188  };
 189  189  
 190  190  static struct modlinkage ixgbe_modlinkage = {
 191      -        MODREV_1, &ixgbe_modldrv, NULL
      191 +        MODREV_1, { &ixgbe_modldrv, NULL }
 192  192  };
 193  193  
 194  194  /*
 195  195   * Access attributes for register mapping
 196  196   */
 197  197  ddi_device_acc_attr_t ixgbe_regs_acc_attr = {
 198  198          DDI_DEVICE_ATTR_V1,
 199  199          DDI_STRUCTURE_LE_ACC,
 200  200          DDI_STRICTORDER_ACC,
 201  201          DDI_FLAGERR_ACC
↓ open down ↓ 5654 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX