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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
          +++ new/usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
↓ open down ↓ 46 lines elided ↑ open up ↑
  47   47          }
  48   48  
  49   49  extern struct mod_ops mod_miscops;
  50   50  
  51   51  static struct modlmisc modlmisc = {
  52   52          &mod_miscops,   /* Type of module */
  53   53          "SCSI Bus Utility Routines"
  54   54  };
  55   55  
  56   56  static struct modlinkage modlinkage = {
  57      -        MODREV_1, (void *)&modlmisc, NULL
       57 +        MODREV_1, { (void *)&modlmisc, NULL }
  58   58  };
  59   59  
  60   60  /*
  61   61   * Contexts from which we call scsi_test
  62   62   */
  63   63  enum scsi_test_ctxt {
  64   64          /*
  65   65           * Those in scsi_hba_probe_pi()
  66   66           */
  67   67          STC_PROBE_FIRST_INQ,
↓ open down ↓ 2153 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX