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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
          +++ new/usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
↓ open down ↓ 311 lines elided ↑ open up ↑
 312  312  extern struct mod_ops mod_driverops;
 313  313  
 314  314  static  struct modldrv modldrv = {
 315  315          &mod_driverops, /* driverops */
 316  316          "NVIDIA CK804/MCP04/MCP51/MCP55/MCP61 HBA",
 317  317          &nv_dev_ops,    /* driver ops */
 318  318  };
 319  319  
 320  320  static  struct modlinkage modlinkage = {
 321  321          MODREV_1,
 322      -        &modldrv,
 323      -        NULL
      322 +        { &modldrv, NULL }
 324  323  };
 325  324  
 326  325  /*
 327  326   * Maximum number of consecutive interrupts processed in the loop in the
 328  327   * single invocation of the port interrupt routine.
 329  328   */
 330  329  int nv_max_intr_loops = NV_MAX_INTR_PER_DEV;
 331  330  
 332  331  /*
 333  332   * wait between checks of reg status
↓ open down ↓ 6837 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX