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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/usb/clients/usbser/usbsacm/usbsacm.c
          +++ new/usr/src/uts/common/io/usb/clients/usbser/usbsacm/usbsacm.c
↓ open down ↓ 397 lines elided ↑ open up ↑
 398  398  /* modldrv structure */
 399  399  static struct modldrv modldrv = {
 400  400          &mod_driverops,         /* type of module - driver */
 401  401          "USB Serial CDC ACM driver",
 402  402          &usbsacm_ops,
 403  403  };
 404  404  
 405  405  /* modlinkage structure */
 406  406  static struct modlinkage modlinkage = {
 407  407          MODREV_1,
 408      -        &modldrv,
 409      -        NULL
      408 +        { &modldrv, NULL }
 410  409  };
 411  410  
 412  411  static void     *usbsacm_statep;        /* soft state */
 413  412  
 414  413  /*
 415  414   * DSD definitions
 416  415   */
 417  416  static ds_ops_t usbsacm_ds_ops = {
 418  417          DS_OPS_VERSION,
 419  418          usbsacm_ds_attach,
↓ open down ↓ 2874 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX