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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/pit_beep.c
          +++ new/usr/src/uts/intel/io/pit_beep.c
↓ open down ↓ 94 lines elided ↑ open up ↑
  95   95  
  96   96  
  97   97  static struct modldrv modldrv = {
  98   98          &mod_driverops,                 /* This one is a driver */
  99   99          "Intel Pit_beep Driver",        /* Name of the module. */
 100  100          &pit_beep_ops,                  /* Driver ops */
 101  101  };
 102  102  
 103  103  
 104  104  static struct modlinkage modlinkage = {
 105      -        MODREV_1, (void *)&modldrv, NULL
      105 +        MODREV_1, { (void *)&modldrv, NULL }
 106  106  };
 107  107  
 108  108  
 109  109  
 110  110  int
 111  111  _init(void)
 112  112  {
 113  113          int error;
 114  114  
 115  115          /* Initialize the soft state structures */
↓ open down ↓ 172 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX