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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/fibre-channel/impl/fctl.c
          +++ new/usr/src/uts/common/io/fibre-channel/impl/fctl.c
↓ open down ↓ 158 lines elided ↑ open up ↑
 159  159  char *fctl_version = FCTL_NAME_VERSION;
 160  160  
 161  161  extern struct mod_ops mod_miscops;
 162  162  
 163  163  static struct modlmisc modlmisc = {
 164  164          &mod_miscops,                   /* type of module */
 165  165          FCTL_NAME_VERSION               /* Module name */
 166  166  };
 167  167  
 168  168  static struct modlinkage modlinkage = {
 169      -        MODREV_1, (void *)&modlmisc, NULL
      169 +        MODREV_1, { (void *)&modlmisc, NULL }
 170  170  };
 171  171  
 172  172  static struct bus_ops fctl_fca_busops = {
 173  173          BUSO_REV,
 174  174          nullbusmap,                     /* bus_map */
 175  175          NULL,                           /* bus_get_intrspec */
 176  176          NULL,                           /* bus_add_intrspec */
 177  177          NULL,                           /* bus_remove_intrspec */
 178  178          i_ddi_map_fault,                /* bus_map_fault */
 179  179          NULL,                           /* bus_dma_map */
↓ open down ↓ 6561 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX