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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/sysevent.c
          +++ new/usr/src/uts/common/io/sysevent.c
↓ open down ↓ 758 lines elided ↑ open up ↑
 759  759          (struct bus_ops *)0,    /* no bus operations */
 760  760          nulldev,                /* power */
 761  761          ddi_quiesce_not_needed,         /* quiesce */
 762  762  };
 763  763  
 764  764  static struct modldrv modldrv = {
 765  765          &mod_driverops, "sysevent driver", &sysevent_ops
 766  766  };
 767  767  
 768  768  static struct modlinkage modlinkage = {
 769      -        MODREV_1, &modldrv, NULL
      769 +        MODREV_1, { &modldrv, NULL }
 770  770  };
 771  771  
 772  772  int
 773  773  _init(void)
 774  774  {
 775  775          int s;
 776  776  
 777  777          s = ddi_soft_state_init(&evchan_ctlp, sizeof (evchan_ctl_t), 1);
 778  778          if (s != 0)
 779  779                  return (s);
↓ open down ↓ 23 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX