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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/rwd/rt2661.c
          +++ new/usr/src/uts/common/io/rwd/rt2661.c
↓ open down ↓ 247 lines elided ↑ open up ↑
 248  248      rt2661_detach, nodev, NULL, D_MP, NULL, rt2661_quiesce);
 249  249  
 250  250  static struct modldrv rwd_modldrv = {
 251  251          &mod_driverops,         /* Type of module.  This one is a driver */
 252  252          "Ralink RT2661 driver v1.1",    /* short description */
 253  253          &rwd_dev_ops            /* driver specific ops */
 254  254  };
 255  255  
 256  256  static struct modlinkage modlinkage = {
 257  257          MODREV_1,
 258      -        (void *)&rwd_modldrv,
 259      -        NULL
      258 +        { (void *)&rwd_modldrv, NULL }
 260  259  };
 261  260  
 262  261  static int      rt2661_m_stat(void *,  uint_t, uint64_t *);
 263  262  static int      rt2661_m_start(void *);
 264  263  static void     rt2661_m_stop(void *);
 265  264  static int      rt2661_m_promisc(void *, boolean_t);
 266  265  static int      rt2661_m_multicst(void *, boolean_t, const uint8_t *);
 267  266  static int      rt2661_m_unicst(void *, const uint8_t *);
 268  267  static mblk_t   *rt2661_m_tx(void *, mblk_t *);
 269  268  static void     rt2661_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 3021 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX