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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/usb/hcd/uhci/uhci.c
          +++ new/usr/src/uts/common/io/usb/hcd/uhci/uhci.c
↓ open down ↓ 87 lines elided ↑ open up ↑
  88   88          uhci_quiesce                    /* quiesce */
  89   89  };
  90   90  
  91   91  static struct modldrv modldrv = {
  92   92          &mod_driverops,         /* Type of module. This one is a driver */
  93   93          "USB UHCI Controller Driver",   /* Name of the module. */
  94   94          &uhci_ops,              /* Driver ops */
  95   95  };
  96   96  
  97   97  static struct modlinkage modlinkage = {
  98      -        MODREV_1, (void *)&modldrv, NULL
       98 +        MODREV_1, { (void *)&modldrv, NULL }
  99   99  };
 100  100  
 101  101  /*
 102  102   *  Globals
 103  103   */
 104  104  void            *uhci_statep;
 105  105  uint_t          uhci_errlevel = USB_LOG_L2;
 106  106  uint_t          uhci_errmask = PRINT_MASK_ALL;
 107  107  uint_t          uhci_instance_debug = (uint_t)-1;
 108  108  
↓ open down ↓ 1797 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX