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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/tclient.c
          +++ new/usr/src/uts/common/io/tclient.c
↓ open down ↓ 99 lines elided ↑ open up ↑
 100  100          ddi_quiesce_not_needed,         /* quiesce */
 101  101  };
 102  102  
 103  103  static struct modldrv modldrv = {
 104  104          &mod_driverops,
 105  105          "vhci client test driver",
 106  106          &tcli_ops
 107  107  };
 108  108  
 109  109  static struct modlinkage modlinkage = {
 110      -        MODREV_1, &modldrv, NULL
      110 +        MODREV_1, { &modldrv, NULL }
 111  111  };
 112  112  
 113  113  int
 114  114  _init(void)
 115  115  {
 116  116          int e;
 117  117  
 118  118          if ((e = ddi_soft_state_init(&dstates,
 119  119              sizeof (struct dstate), 0)) != 0) {
 120  120                  return (e);
↓ open down ↓ 163 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX