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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ib/clients/eoib/enx_main.c
          +++ new/usr/src/uts/common/io/ib/clients/eoib/enx_main.c
↓ open down ↓ 147 lines elided ↑ open up ↑
 148  148  /*
 149  149   * Module linkage information for the kernel
 150  150   */
 151  151  static struct modldrv enx_modldrv = {
 152  152          &mod_driverops,         /* Driver module */
 153  153          "EoIB Nexus",           /* Driver name and version */
 154  154          &enx_ops,               /* Driver ops */
 155  155  };
 156  156  
 157  157  static struct modlinkage enx_modlinkage = {
 158      -        MODREV_1, (void *)&enx_modldrv, NULL
      158 +        MODREV_1, { (void *)&enx_modldrv, NULL }
 159  159  };
 160  160  
 161  161  /*
 162  162   * EoIB NDI events
 163  163   */
 164  164  static ndi_event_definition_t enx_ndi_event_defs[] = {
 165  165          { ENX_EVENT_TAG_GW_INFO_UPDATE, EIB_NDI_EVENT_GW_INFO_UPDATE,
 166  166                  EPL_KERNEL, NDI_EVENT_POST_TO_TGT },
 167  167          { ENX_EVENT_TAG_GW_AVAILABLE, EIB_NDI_EVENT_GW_AVAILABLE,
 168  168                  EPL_KERNEL, NDI_EVENT_POST_TO_TGT },
↓ open down ↓ 470 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX