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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/urtw/urtw.c
          +++ new/usr/src/uts/common/io/urtw/urtw.c
↓ open down ↓ 61 lines elided ↑ open up ↑
  62   62      urtw_detach, nodev, NULL, D_MP, NULL, ddi_quiesce_not_needed);
  63   63  
  64   64  static struct modldrv urtw_modldrv = {
  65   65          &mod_driverops,         /* Type of module.  This one is a driver */
  66   66          "RTL8187L/B driver v1.2",       /* short description */
  67   67          &urtw_dev_ops           /* driver specific ops */
  68   68  };
  69   69  
  70   70  static struct modlinkage modlinkage = {
  71   71          MODREV_1,
  72      -        (void *)&urtw_modldrv,
  73      -        NULL
       72 +        { (void *)&urtw_modldrv, NULL }
  74   73  };
  75   74  
  76   75  static int      urtw_m_stat(void *,  uint_t, uint64_t *);
  77   76  static int      urtw_m_start(void *);
  78   77  static void     urtw_m_stop(void *);
  79   78  static int      urtw_m_promisc(void *, boolean_t);
  80   79  static int      urtw_m_multicst(void *, boolean_t, const uint8_t *);
  81   80  static int      urtw_m_unicst(void *, const uint8_t *);
  82   81  static mblk_t   *urtw_m_tx(void *, mblk_t *);
  83   82  static void     urtw_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 4479 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX