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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/logindmux.c
          +++ new/usr/src/uts/common/io/logindmux.c
↓ open down ↓ 167 lines elided ↑ open up ↑
 168  168      logdmux_detach, nulldev, logdmux_info, D_MP | D_MTPERQ, &logdmuxinfo,
 169  169      ddi_quiesce_not_needed);
 170  170  
 171  171  static struct modldrv modldrv = {
 172  172          &mod_driverops,
 173  173          "logindmux driver",
 174  174          &logdmux_ops
 175  175  };
 176  176  
 177  177  static struct modlinkage modlinkage = {
 178      -        MODREV_1, &modldrv, NULL
      178 +        MODREV_1, { &modldrv, NULL }
 179  179  };
 180  180  
 181  181  int
 182  182  _init(void)
 183  183  {
 184  184          int     ret;
 185  185  
 186  186          mutex_init(&logdmux_peerq_lock, NULL, MUTEX_DRIVER, NULL);
 187  187          mutex_init(&logdmux_qexch_lock, NULL, MUTEX_DRIVER, NULL);
 188  188  
↓ open down ↓ 1073 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX