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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/rsm/rsmops.c
          +++ new/usr/src/uts/common/io/rsm/rsmops.c
↓ open down ↓ 33 lines elided ↑ open up ↑
  34   34  #include <sys/rsm/rsm_common.h>
  35   35  #include <sys/rsm/rsmpi.h>
  36   36  #include <sys/rsm/rsmpi_driver.h>
  37   37  
  38   38  /* lint -w2 */
  39   39  static struct modlmisc modlmisc = {
  40   40          &mod_miscops, "RSMOPS module",
  41   41  };
  42   42  
  43   43  static struct modlinkage modlinkage = {
  44      -        MODREV_1, (void *)&modlmisc, NULL
       44 +        MODREV_1, { (void *)&modlmisc, NULL }
  45   45  };
  46   46  
  47   47  static kmutex_t rsmops_lock;
  48   48  
  49   49  static rsmops_drv_t *rsmops_drv_head = NULL;
  50   50  
  51   51  static int rsmops_threads_started = 0;
  52   52  
  53   53  int
  54   54  _init(void)
↓ open down ↓ 515 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX