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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/crypto/core/kcf.c
          +++ new/usr/src/uts/common/crypto/core/kcf.c
↓ open down ↓ 55 lines elided ↑ open up ↑
  56   56  #define KCF_FRMWRK_DEBUG(l, x)  if (kcf_frmwrk_debug >= l) printf x
  57   57  #else   /* DEBUG */
  58   58  #define KCF_FRMWRK_DEBUG(l, x)
  59   59  #endif  /* DEBUG */
  60   60  
  61   61  static struct modlmisc modlmisc = {
  62   62          &mod_miscops, "Kernel Crypto Framework"
  63   63  };
  64   64  
  65   65  static struct modlinkage modlinkage = {
  66      -        MODREV_1, (void *)&modlmisc, NULL
       66 +        MODREV_1, { (void *)&modlmisc, NULL }
  67   67  };
  68   68  
  69   69  extern int sys_shutdown;
  70   70  
  71   71  int
  72   72  _init()
  73   73  {
  74   74          /* initialize the mechanisms tables supported out-of-the-box */
  75   75          kcf_init_mech_tabs();
  76   76  
↓ open down ↓ 63 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX