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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/brand/sn1/sn1_brand.c
          +++ new/usr/src/uts/common/brand/sn1/sn1_brand.c
↓ open down ↓ 117 lines elided ↑ open up ↑
 118  118          &sn1_mops
 119  119  };
 120  120  
 121  121  static struct modlbrand modlbrand = {
 122  122          &mod_brandops,          /* type of module */
 123  123          "Solaris N-1 Brand",    /* description of module */
 124  124          &sn1_brand              /* driver ops */
 125  125  };
 126  126  
 127  127  static struct modlinkage modlinkage = {
 128      -        MODREV_1, (void *)&modlbrand, NULL
      128 +        MODREV_1, { (void *)&modlbrand, NULL }
 129  129  };
 130  130  
 131  131  void
 132  132  sn1_setbrand(proc_t *p)
 133  133  {
 134  134          brand_solaris_setbrand(p, &sn1_brand);
 135  135  }
 136  136  
 137  137  /* ARGSUSED */
 138  138  int
↓ open down ↓ 137 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX