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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/comstar/stmf/stmf.c
          +++ new/usr/src/uts/common/io/comstar/stmf/stmf.c
↓ open down ↓ 276 lines elided ↑ open up ↑
 277  277  #define STMF_MODULE_NAME        "stmf"
 278  278  
 279  279  static struct modldrv modldrv = {
 280  280          &mod_driverops,
 281  281          STMF_NAME,
 282  282          &stmf_ops
 283  283  };
 284  284  
 285  285  static struct modlinkage modlinkage = {
 286  286          MODREV_1,
 287      -        &modldrv,
 288      -        NULL
      287 +        { &modldrv, NULL }
 289  288  };
 290  289  
 291  290  int
 292  291  _init(void)
 293  292  {
 294  293          int ret;
 295  294  
 296  295          ret = mod_install(&modlinkage);
 297  296          if (ret)
 298  297                  return (ret);
↓ open down ↓ 7692 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX