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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/i86pc/io/acpi/acpinex/acpinex_drv.c
          +++ new/usr/src/uts/i86pc/io/acpi/acpinex/acpinex_drv.c
↓ open down ↓ 151 lines elided ↑ open up ↑
 152  152  };
 153  153  
 154  154  static struct modldrv modldrv = {
 155  155          &mod_driverops,                 /* Type of module */
 156  156          "ACPI virtual bus driver",      /* name of module */
 157  157          &acpinex_ops,                   /* driver ops */
 158  158  };
 159  159  
 160  160  static struct modlinkage modlinkage = {
 161  161          MODREV_1,                       /* rev */
 162      -        (void *)&modldrv,
 163      -        NULL
      162 +        { (void *)&modldrv, NULL }
 164  163  };
 165  164  
 166  165  /*
 167  166   * Module initialization routines.
 168  167   */
 169  168  int
 170  169  _init(void)
 171  170  {
 172  171          int error;
 173  172  
↓ open down ↓ 430 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX