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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/consconfig_dacf.c
          +++ new/usr/src/uts/common/io/consconfig_dacf.c
↓ open down ↓ 258 lines elided ↑ open up ↑
 259  259          opsets,
 260  260  };
 261  261  
 262  262  static struct modldacf modldacf = {
 263  263          &mod_dacfops,   /* Type of module */
 264  264          "Consconfig DACF",
 265  265          &dacfsw
 266  266  };
 267  267  
 268  268  static struct modlinkage modlinkage = {
 269      -        MODREV_1, (void *)&modldacf, NULL
      269 +        MODREV_1, { (void *)&modldacf, NULL }
 270  270  };
 271  271  
 272  272  int
 273  273  _init(void) {
 274  274          return (mod_install(&modlinkage));
 275  275  }
 276  276  
 277  277  int
 278  278  _fini(void)
 279  279  {
↓ open down ↓ 1930 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX