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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ral/rt2560.c
          +++ new/usr/src/uts/common/io/ral/rt2560.c
↓ open down ↓ 149 lines elided ↑ open up ↑
 150  150      rt2560_detach, nodev, NULL, D_MP, NULL, rt2560_quiesce);
 151  151  
 152  152  static struct modldrv ral_modldrv = {
 153  153          &mod_driverops,         /* Type of module.  This one is a driver */
 154  154          "Ralink RT2500 driver v1.6",    /* short description */
 155  155          &ral_dev_ops            /* driver specific ops */
 156  156  };
 157  157  
 158  158  static struct modlinkage modlinkage = {
 159  159          MODREV_1,
 160      -        (void *)&ral_modldrv,
 161      -        NULL
      160 +        { (void *)&ral_modldrv, NULL }
 162  161  };
 163  162  
 164  163  static int      rt2560_m_stat(void *,  uint_t, uint64_t *);
 165  164  static int      rt2560_m_start(void *);
 166  165  static void     rt2560_m_stop(void *);
 167  166  static int      rt2560_m_promisc(void *, boolean_t);
 168  167  static int      rt2560_m_multicst(void *, boolean_t, const uint8_t *);
 169  168  static int      rt2560_m_unicst(void *, const uint8_t *);
 170  169  static mblk_t   *rt2560_m_tx(void *, mblk_t *);
 171  170  static void     rt2560_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 2560 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX