Print this page
fixup .text where possible
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/1394/s1394.c
          +++ new/usr/src/uts/common/io/1394/s1394.c
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17   * fields enclosed by brackets "[]" replaced with your own identifying
  18   18   * information: Portions Copyright [yyyy] [name of copyright owner]
  19   19   *
  20   20   * CDDL HEADER END
  21   21   */
  22   22  /*
  23   23   * Copyright (c) 1999-2000 by Sun Microsystems, Inc.
  24   24   * All rights reserved.
  25   25   */
  26   26  
  27      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  28   27  
       28 +
  29   29  /*
  30   30   * s1394.c
  31   31   *    1394 Services Layer Initialization and Cleanup Routines
  32   32   *    The routines do all initialization and cleanup for the Sevices Layer
  33   33   */
  34   34  
  35   35  #include <sys/conf.h>
  36   36  #include <sys/ddi.h>
  37   37  #include <sys/sunddi.h>
  38   38  #include <sys/types.h>
↓ open down ↓ 9 lines elided ↑ open up ↑
  48   48  
  49   49  /* Module Driver Info */
  50   50  static struct modlmisc s1394_modlmisc = {
  51   51          &mod_miscops,
  52   52          "IEEE 1394 Services Library 1.0"
  53   53  };
  54   54  
  55   55  /* Module Linkage */
  56   56  static struct modlinkage s1394_modlinkage = {
  57   57          MODREV_1,
  58      -        &s1394_modlmisc,
  59      -        NULL
       58 +        {   &s1394_modlmisc,
       59 +            NULL }
  60   60  };
  61   61  
  62   62  static int s1394_init();
  63   63  static void s1394_fini();
  64   64  
  65   65  #ifndef NPROBE
  66   66  extern int tnf_mod_load(void);
  67   67  extern int tnf_mod_unload(struct modlinkage *mlp);
  68   68  #endif
  69   69  
↓ open down ↓ 90 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX