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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/fcoe/fcoe.c
          +++ new/usr/src/uts/common/io/fcoe/fcoe.c
↓ open down ↓ 202 lines elided ↑ open up ↑
 203  203  #define FCOE_NAME       "FCoE Transport v" FCOE_VERSION
 204  204  #define TASKQ_NAME_LEN  32
 205  205  
 206  206  static struct modldrv modldrv = {
 207  207          &mod_driverops,
 208  208          FCOE_NAME,
 209  209          &fcoe_ops,
 210  210  };
 211  211  
 212  212  static struct modlinkage modlinkage = {
 213      -        MODREV_1, &modldrv, NULL
      213 +        MODREV_1, { &modldrv, NULL }
 214  214  };
 215  215  
 216  216  /*
 217  217   * TRACE for all FCoE related modules
 218  218   */
 219  219  static kmutex_t fcoe_trace_buf_lock;
 220  220  static int      fcoe_trace_buf_curndx   = 0;
 221  221  static int      fcoe_trace_on           = 1;
 222  222  static caddr_t  fcoe_trace_buf          = NULL;
 223  223  static clock_t  fcoe_trace_start        = 0;
↓ open down ↓ 1086 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX