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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/pm.c
          +++ new/usr/src/uts/common/io/pm.c
↓ open down ↓ 150 lines elided ↑ open up ↑
 151  151          ddi_quiesce_not_needed,         /* quiesce */
 152  152  };
 153  153  
 154  154  static struct modldrv modldrv = {
 155  155          &mod_driverops,
 156  156          "power management driver",
 157  157          &pm_ops
 158  158  };
 159  159  
 160  160  static struct modlinkage modlinkage = {
 161      -        MODREV_1, &modldrv, 0
      161 +        MODREV_1, { &modldrv, NULL }
 162  162  };
 163  163  
 164  164  /* Local functions */
 165  165  #ifdef DEBUG
 166  166  static int      print_info(dev_info_t *, void *);
 167  167  
 168  168  #endif
 169  169  
 170  170  int
 171  171  _init(void)
↓ open down ↓ 2851 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX