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/fct/fct.c
          +++ new/usr/src/uts/common/io/comstar/port/fct/fct.c
↓ open down ↓ 96 lines elided ↑ open up ↑
  97   97  
  98   98  extern struct mod_ops mod_driverops;
  99   99  static struct modldrv modldrv = {
 100  100          &mod_driverops,
 101  101          FCT_NAME,
 102  102          &fct_ops
 103  103  };
 104  104  
 105  105  static struct modlinkage modlinkage = {
 106  106          MODREV_1,
 107      -        &modldrv,
 108      -        NULL
      107 +        { &modldrv, NULL }
 109  108  };
 110  109  
 111  110  static uint32_t rportid_table_size = FCT_HASH_TABLE_SIZE;
 112  111  static int max_cached_ncmds = FCT_MAX_CACHED_CMDS;
 113  112  static fct_i_local_port_t *fct_iport_list = NULL;
 114  113  static kmutex_t fct_global_mutex;
 115  114  uint32_t fct_rscn_options = RSCN_OPTION_VERIFY;
 116  115  
 117  116  int
 118  117  _init(void)
↓ open down ↓ 3513 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX