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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/timod.c
          +++ new/usr/src/uts/common/io/timod.c
↓ open down ↓ 66 lines elided ↑ open up ↑
  67   67  
  68   68  /*
  69   69   * Module linkage information for the kernel.
  70   70   */
  71   71  
  72   72  static struct modlstrmod modlstrmod = {
  73   73          &mod_strmodops, "transport interface str mod", &fsw
  74   74  };
  75   75  
  76   76  static struct modlinkage modlinkage = {
  77      -        MODREV_1, &modlstrmod, NULL
       77 +        MODREV_1, { &modlstrmod, NULL }
  78   78  };
  79   79  
  80   80  static krwlock_t        tim_list_rwlock;
  81   81  
  82   82  /*
  83   83   * This module keeps track of capabilities of underlying transport. Information
  84   84   * is persistent through module invocations (open/close). Currently it remembers
  85   85   * whether underlying transport supports TI_GET{MY,PEER}NAME ioctls and
  86   86   * T_CAPABILITY_REQ message. This module either passes ioctl/messages to the
  87   87   * transport or emulates it when transport doesn't understand these
↓ open down ↓ 2895 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX