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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/drcompat.c
          +++ new/usr/src/uts/common/io/drcompat.c
↓ open down ↓ 50 lines elided ↑ open up ↑
  51   51  /*
  52   52   * Module linkage information for the kernel.
  53   53   */
  54   54  
  55   55  static struct modlstrmod modlstrmod = {
  56   56          &mod_strmodops, "dr compatibility for DLPI style 2 drivers", &fsw
  57   57  };
  58   58  
  59   59  
  60   60  static struct modlinkage modlinkage = {
  61      -        MODREV_1, &modlstrmod, NULL
       61 +        MODREV_1, { &modlstrmod, NULL }
  62   62  };
  63   63  
  64   64  
  65   65  int
  66   66  _init(void)
  67   67  {
  68   68          return (mod_install(&modlinkage));
  69   69  }
  70   70  
  71   71  int
↓ open down ↓ 303 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX