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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/rum/rum.c
          +++ new/usr/src/uts/common/io/rum/rum.c
↓ open down ↓ 238 lines elided ↑ open up ↑
 239  239      rum_detach, nodev, NULL, D_MP, NULL, ddi_quiesce_not_needed);
 240  240  
 241  241  static struct modldrv rum_modldrv = {
 242  242          &mod_driverops,         /* Type of module.  This one is a driver */
 243  243          "rum driver v1.2",      /* short description */
 244  244          &rum_dev_ops            /* driver specific ops */
 245  245  };
 246  246  
 247  247  static struct modlinkage modlinkage = {
 248  248          MODREV_1,
 249      -        (void *)&rum_modldrv,
 250      -        NULL
      249 +        { (void *)&rum_modldrv, NULL }
 251  250  };
 252  251  
 253  252  static int      rum_m_stat(void *,  uint_t, uint64_t *);
 254  253  static int      rum_m_start(void *);
 255  254  static void     rum_m_stop(void *);
 256  255  static int      rum_m_promisc(void *, boolean_t);
 257  256  static int      rum_m_multicst(void *, boolean_t, const uint8_t *);
 258  257  static int      rum_m_unicst(void *, const uint8_t *);
 259  258  static mblk_t   *rum_m_tx(void *, mblk_t *);
 260  259  static void     rum_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 2252 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX