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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ib/ibnex/ibnex.c
          +++ new/usr/src/uts/common/io/ib/ibnex/ibnex.c
↓ open down ↓ 279 lines elided ↑ open up ↑
 280  280  };
 281  281  
 282  282  /* Module linkage information for the kernel.  */
 283  283  static struct modldrv modldrv = {
 284  284          &mod_driverops,         /* Driver module */
 285  285          "IB nexus",             /* Driver name and version */
 286  286          &ibnex_ops,             /* driver ops */
 287  287  };
 288  288  
 289  289  static struct modlinkage modlinkage = {
 290      -        MODREV_1, (void *)&modldrv, NULL
      290 +        MODREV_1, { (void *)&modldrv, NULL }
 291  291  };
 292  292  
 293  293  /*
 294  294   * Global per-instance IB Nexus data.
 295  295   * There is only one instance of IB Nexus supported.
 296  296   */
 297  297  ibnex_t ibnex;
 298  298  #ifdef __lock_lint
 299  299  extern ibdm_t ibdm;
 300  300  #endif
↓ open down ↓ 3949 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX