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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/usb/usba/usba.c
          +++ new/usr/src/uts/common/io/usb/usba/usba.c
↓ open down ↓ 89 lines elided ↑ open up ↑
  90   90  /*
  91   91   * modload support
  92   92   */
  93   93  
  94   94  static struct modlmisc modlmisc = {
  95   95          &mod_miscops,   /* Type of module */
  96   96          "USBA: USB Architecture 2.0 1.66"
  97   97  };
  98   98  
  99   99  static struct modlinkage modlinkage = {
 100      -        MODREV_1, (void *)&modlmisc, NULL
      100 +        MODREV_1, { (void *)&modlmisc, NULL }
 101  101  };
 102  102  
 103  103  
 104  104  static usb_log_handle_t usba_log_handle;
 105  105  uint_t          usba_errlevel = USB_LOG_L4;
 106  106  uint_t          usba_errmask = (uint_t)-1;
 107  107  
 108  108  extern usb_log_handle_t hubdi_log_handle;
 109  109  
 110  110  int
↓ open down ↓ 3144 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX