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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/gld.c
          +++ new/usr/src/uts/common/io/gld.c
↓ open down ↓ 390 lines elided ↑ open up ↑
 391  391  
 392  392  static struct modldrv modlmisc = {
 393  393          &mod_miscops,           /* Type of module - a utility provider */
 394  394          "Generic LAN Driver (" GLD_VERSION_STRING ")"
 395  395  #ifdef GLD_DEBUG
 396  396          " DEBUG"
 397  397  #endif
 398  398  };
 399  399  
 400  400  static struct modlinkage modlinkage = {
 401      -        MODREV_1, &modlmisc, NULL
      401 +        MODREV_1, { &modlmisc, NULL }
 402  402  };
 403  403  
 404  404  int
 405  405  _init(void)
 406  406  {
 407  407          int e;
 408  408  
 409  409          /* initialize gld_device_list mutex */
 410  410          mutex_init(&gld_device_list.gld_devlock, NULL, MUTEX_DRIVER, NULL);
 411  411  
↓ open down ↓ 5530 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX