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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/xen/io/xpvtap.c
          +++ new/usr/src/uts/common/xen/io/xpvtap.c
↓ open down ↓ 102 lines elided ↑ open up ↑
 103  103  
 104  104  
 105  105  static struct modldrv xpvtap_modldrv = {
 106  106          &mod_driverops,         /* Type of module.  This one is a driver */
 107  107          "xpvtap driver",        /* Name of the module. */
 108  108          &xpvtap_dev_ops,        /* driver ops */
 109  109  };
 110  110  
 111  111  static struct modlinkage xpvtap_modlinkage = {
 112  112          MODREV_1,
 113      -        (void *) &xpvtap_modldrv,
 114      -        NULL
      113 +        { (void *) &xpvtap_modldrv, NULL }
 115  114  };
 116  115  
 117  116  
 118  117  void *xpvtap_statep;
 119  118  
 120  119  
 121  120  static xpvtap_state_t *xpvtap_drv_init(int instance);
 122  121  static void xpvtap_drv_fini(xpvtap_state_t *state);
 123  122  static uint_t xpvtap_intr(caddr_t arg);
 124  123  
↓ open down ↓ 1514 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX