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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/uath/uath.c
          +++ new/usr/src/uts/common/io/uath/uath.c
↓ open down ↓ 171 lines elided ↑ open up ↑
 172  172      uath_detach, nodev, NULL, D_MP, NULL, ddi_quiesce_not_needed);
 173  173  
 174  174  static struct modldrv uath_modldrv = {
 175  175          &mod_driverops,         /* Type of module.  This one is a driver */
 176  176          "Atheros AR5523 USB Driver v1.1",       /* short description */
 177  177          &uath_dev_ops           /* driver specific ops */
 178  178  };
 179  179  
 180  180  static struct modlinkage modlinkage = {
 181  181          MODREV_1,
 182      -        (void *)&uath_modldrv,
 183      -        NULL
      182 +        { (void *)&uath_modldrv, NULL }
 184  183  };
 185  184  
 186  185  static int      uath_m_stat(void *,  uint_t, uint64_t *);
 187  186  static int      uath_m_start(void *);
 188  187  static void     uath_m_stop(void *);
 189  188  static int      uath_m_promisc(void *, boolean_t);
 190  189  static int      uath_m_multicst(void *, boolean_t, const uint8_t *);
 191  190  static int      uath_m_unicst(void *, const uint8_t *);
 192  191  static mblk_t   *uath_m_tx(void *, mblk_t *);
 193  192  static void     uath_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 3191 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX