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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
          +++ new/usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
↓ open down ↓ 494 lines elided ↑ open up ↑
 495  495          ddi_quiesce_not_needed,         /* quiesce */
 496  496  };
 497  497  
 498  498  static struct modldrv modldrv = {
 499  499          &mod_driverops,                 /* Module type. This one is a driver */
 500  500          "SCSA to USB Driver",   /* Name of the module. */
 501  501          &scsa2usb_ops,                  /* driver ops */
 502  502  };
 503  503  
 504  504  static struct modlinkage modlinkage = {
 505      -        MODREV_1, (void *)&modldrv, NULL
      505 +        MODREV_1, { (void *)&modldrv, NULL }
 506  506  };
 507  507  
 508  508  /* event support */
 509  509  static usb_event_t scsa2usb_events = {
 510  510          scsa2usb_disconnect_event_cb,
 511  511          scsa2usb_reconnect_event_cb,
 512  512          NULL, NULL
 513  513  };
 514  514  
 515  515  int
↓ open down ↓ 5320 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX