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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/io/dktp/controller/ata/ata_common.c
          +++ new/usr/src/uts/intel/io/dktp/controller/ata/ata_common.c
↓ open down ↓ 347 lines elided ↑ open up ↑
 348  348  };
 349  349  
 350  350  /* driver loadable module wrapper */
 351  351  static struct modldrv modldrv = {
 352  352          &mod_driverops,         /* Type of module. This one is a driver */
 353  353          "ATA AT-bus attachment disk controller Driver", /* module name */
 354  354          &ata_ops,                                       /* driver ops */
 355  355  };
 356  356  
 357  357  static struct modlinkage modlinkage = {
 358      -        MODREV_1, (void *)&modldrv, NULL
      358 +        MODREV_1, { (void *)&modldrv, NULL }
 359  359  };
 360  360  
 361  361  #ifdef ATA_DEBUG
 362  362  int     ata_debug_init = FALSE;
 363  363  int     ata_debug_attach = FALSE;
 364  364  
 365  365  int     ata_debug = ADBG_FLAG_ERROR
 366  366                  /* | ADBG_FLAG_ARQ */
 367  367                  /* | ADBG_FLAG_INIT */
 368  368                  /* | ADBG_FLAG_TRACE */
↓ open down ↓ 3582 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX