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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/pcmcia/cis/cis_params.c
          +++ new/usr/src/uts/common/pcmcia/cis/cis_params.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) 1995-1999 by Sun Microsystems, Inc.
  24   24   * All rights reserved.
  25   25   */
  26   26  
  27      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  28      -
  29   27  #include <sys/types.h>
  30   28  #include <sys/systm.h>
  31   29  #include <sys/user.h>
  32   30  #include <sys/buf.h>
  33   31  #include <sys/file.h>
  34   32  #include <sys/uio.h>
  35   33  #include <sys/conf.h>
  36   34  #include <sys/stat.h>
  37   35  #include <sys/autoconf.h>
  38   36  #include <sys/vtoc.h>
↓ open down ↓ 182 lines elided ↑ open up ↑
 221  219          16,
 222  220          24,
 223  221  };
 224  222  
 225  223  /*
 226  224   * List of tuples in the global CIS to ignore if they show
 227  225   *      up in both the global and function-specific CIS lists.
 228  226   * This list MUST end with CISTPL_NULL.
 229  227   */
 230  228  cistpl_ignore_list_t cistpl_ignore_list[] = {
 231      -        CISTPL_FUNCID,
 232      -        CISTPL_FUNCE,
 233      -        CISTPL_CONFIG,
 234      -        CISTPL_CFTABLE_ENTRY,
 235      -        CISTPL_NULL     /* list must end with CISTPL_NULL */
      229 +        { CISTPL_FUNCID },
      230 +        { CISTPL_FUNCE },
      231 +        { CISTPL_CONFIG },
      232 +        { CISTPL_CFTABLE_ENTRY },
      233 +        { CISTPL_NULL } /* list must end with CISTPL_NULL */
 236  234  };
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX