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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/usb/usba10/usba10.c
          +++ new/usr/src/uts/common/io/usb/usba10/usba10.c
↓ open down ↓ 37 lines elided ↑ open up ↑
  38   38  /*
  39   39   * modload support
  40   40   */
  41   41  
  42   42  static struct modlmisc modlmisc = {
  43   43          &mod_miscops,   /* Type of module */
  44   44          "USBA10: USB V0.8 Drvr Supp"
  45   45  };
  46   46  
  47   47  static struct modlinkage modlinkage = {
  48      -        MODREV_1, (void *)&modlmisc, NULL
       48 +        MODREV_1, { (void *)&modlmisc, NULL }
  49   49  };
  50   50  
  51   51  
  52   52  int
  53   53  _init(void)
  54   54  {
  55   55          return (mod_install(&modlinkage));
  56   56  }
  57   57  
  58   58  int
↓ open down ↓ 795 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX