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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/tirdwr.c
          +++ new/usr/src/uts/common/io/tirdwr.c
↓ open down ↓ 20 lines elided ↑ open up ↑
  21   21   */
  22   22  /*
  23   23   * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
  24   24   * Use is subject to license terms.
  25   25   */
  26   26  
  27   27  /*      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
  28   28  /*        All Rights Reserved   */
  29   29  
  30   30  
  31      -#pragma ident   "%Z%%M% %I%     %E% SMI" /* from S5R4 1.4 */
  32      -
  33   31  /*
  34   32   * Transport Interface Library read/write module - issue 1
  35   33   */
  36   34  
  37   35  #include        <sys/types.h>
  38   36  #include        <sys/param.h>
  39   37  #include        <sys/stream.h>
  40   38  #include        <sys/stropts.h>
  41   39  #include        <sys/tihdr.h>
  42   40  #include        <sys/debug.h>
↓ open down ↓ 76 lines elided ↑ open up ↑
 119  117          "tirdwr",
 120  118          &trwinfo,
 121  119          D_NEW|D_MTQPAIR|D_MP
 122  120  };
 123  121  
 124  122  static struct modlstrmod modlstrmod = {
 125  123          &mod_strmodops, "xport interface rd/wr str mod", &fsw
 126  124  };
 127  125  
 128  126  static struct modlinkage modlinkage = {
 129      -        MODREV_1, &modlstrmod, NULL
      127 +        MODREV_1, { &modlstrmod, NULL }
 130  128  };
 131  129  
 132  130  int
 133  131  _init(void)
 134  132  {
 135  133          return (mod_install(&modlinkage));
 136  134  }
 137  135  
 138  136  int
 139  137  _fini(void)
↓ open down ↓ 326 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX