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/usbser.c
          +++ new/usr/src/uts/common/io/usb/clients/usbser/usbser.c
↓ open down ↓ 208 lines elided ↑ open up ↑
 209  209   * modload support
 210  210   */
 211  211  extern struct mod_ops mod_miscops;
 212  212  
 213  213  static struct modlmisc modlmisc = {
 214  214          &mod_miscops,   /* Type of module */
 215  215          "USB generic serial module"
 216  216  };
 217  217  
 218  218  static struct modlinkage modlinkage = {
 219      -        MODREV_1, (void *)&modlmisc, NULL
      219 +        MODREV_1, { (void *)&modlmisc, NULL }
 220  220  };
 221  221  
 222  222  
 223  223  #define RSEQ(f1, f2) RSEQE(f1, usbser_rseq_do_cb, f2, NULL)
 224  224  
 225  225  
 226  226  /*
 227  227   * loadable module entry points
 228  228   * ----------------------------
 229  229   */
↓ open down ↓ 3240 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX