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/video/usbvc/usbvc.c
          +++ new/usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
↓ open down ↓ 280 lines elided ↑ open up ↑
 281  281  };
 282  282  
 283  283  static struct modldrv usbvc_modldrv =   {
 284  284          &mod_driverops,
 285  285          "USB video class driver",
 286  286          &usbvc_ops
 287  287  };
 288  288  
 289  289  static struct modlinkage modlinkage = {
 290  290          MODREV_1,
 291      -        &usbvc_modldrv,
 292      -        NULL
      291 +        { &usbvc_modldrv, NULL }
 293  292  };
 294  293  
 295  294  /* Soft state structures */
 296  295  #define USBVC_INITIAL_SOFT_SPACE        1
 297  296  static void *usbvc_statep;
 298  297  
 299  298  
 300  299  /*
 301  300   * Module-wide initialization routine.
 302  301   */
↓ open down ↓ 3578 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX