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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/comstar/port/fcoet/fcoet.c
          +++ new/usr/src/uts/common/io/comstar/port/fcoet/fcoet.c
↓ open down ↓ 153 lines elided ↑ open up ↑
 154  154          ddi_quiesce_not_needed
 155  155  };
 156  156  
 157  157  static struct modldrv modldrv = {
 158  158          &mod_driverops,
 159  159          FCOET_MOD_NAME,
 160  160          &fcoet_ops,
 161  161  };
 162  162  
 163  163  static struct modlinkage modlinkage = {
 164      -        MODREV_1, &modldrv, NULL
      164 +        MODREV_1, { &modldrv, NULL }
 165  165  };
 166  166  
 167  167  /*
 168  168   * Driver's global variables
 169  169   */
 170  170  static kmutex_t  fcoet_mutex;
 171  171  static void     *fcoet_state = NULL;
 172  172  
 173  173  int fcoet_use_ext_log = 1;
 174  174  static char                              fcoet_provider_name[] = "fcoet";
↓ open down ↓ 858 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX