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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/rwn/rt2860.c
          +++ new/usr/src/uts/common/io/rwn/rt2860.c
↓ open down ↓ 222 lines elided ↑ open up ↑
 223  223      rt2860_detach, nodev, NULL, D_MP, NULL, rt2860_quiesce);
 224  224  
 225  225  static struct modldrv rwn_modldrv = {
 226  226          &mod_driverops,         /* Type of module.  This one is a driver */
 227  227          "Ralink RT2700/2800 driver v1.2",       /* short description */
 228  228          &rwn_dev_ops            /* driver specific ops */
 229  229  };
 230  230  
 231  231  static struct modlinkage modlinkage = {
 232  232          MODREV_1,
 233      -        (void *)&rwn_modldrv,
 234      -        NULL
      233 +        { (void *)&rwn_modldrv, NULL }
 235  234  };
 236  235  
 237  236  static int      rt2860_m_stat(void *,  uint_t, uint64_t *);
 238  237  static int      rt2860_m_start(void *);
 239  238  static void     rt2860_m_stop(void *);
 240  239  static int      rt2860_m_promisc(void *, boolean_t);
 241  240  static int      rt2860_m_multicst(void *, boolean_t, const uint8_t *);
 242  241  static int      rt2860_m_unicst(void *, const uint8_t *);
 243  242  static mblk_t   *rt2860_m_tx(void *, mblk_t *);
 244  243  static void     rt2860_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 2951 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX