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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/sata/impl/sata.c
          +++ new/usr/src/uts/common/io/sata/impl/sata.c
↓ open down ↓ 428 lines elided ↑ open up ↑
 429  429  extern uchar_t  scsi_cdb_size[];
 430  430  
 431  431  static struct modlmisc modlmisc = {
 432  432          &mod_miscops,                   /* Type of module */
 433  433          "SATA Module"                   /* module name */
 434  434  };
 435  435  
 436  436  
 437  437  static struct modlinkage modlinkage = {
 438  438          MODREV_1,
 439      -        (void *)&modlmisc,
 440      -        NULL
      439 +        { (void *)&modlmisc, NULL }
 441  440  };
 442  441  
 443  442  /*
 444  443   * Default sata pkt timeout. Used when a target driver scsi_pkt time is zero,
 445  444   * i.e. when scsi_pkt has not timeout specified.
 446  445   */
 447  446  static int sata_default_pkt_time = 60;  /* 60 seconds */
 448  447  
 449  448  /*
 450  449   * Intermediate buffer device access attributes - they are required,
↓ open down ↓ 20661 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX