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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/mii/mii.c
          +++ new/usr/src/uts/common/io/mii/mii.c
↓ open down ↓ 156 lines elided ↑ open up ↑
 157  157   */
 158  158  
 159  159  extern struct mod_ops mod_misc_ops;
 160  160  
 161  161  static struct modlmisc modlmisc = {
 162  162          &mod_miscops,
 163  163          "802.3 MII support",
 164  164  };
 165  165  
 166  166  static struct modlinkage modlinkage = {
 167      -        MODREV_1, &modlmisc, NULL
      167 +        MODREV_1, { &modlmisc, NULL }
 168  168  };
 169  169  
 170  170  int
 171  171  _init(void)
 172  172  {
 173  173          return (mod_install(&modlinkage));
 174  174  }
 175  175  
 176  176  int
 177  177  _fini(void)
↓ open down ↓ 2012 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX