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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ural/ural.c
          +++ new/usr/src/uts/common/io/ural/ural.c
↓ open down ↓ 242 lines elided ↑ open up ↑
 243  243      ural_detach, nodev, NULL, D_MP, NULL, ddi_quiesce_not_needed);
 244  244  
 245  245  static struct modldrv ural_modldrv = {
 246  246          &mod_driverops,         /* Type of module.  This one is a driver */
 247  247          "ural driver v1.4",     /* short description */
 248  248          &ural_dev_ops           /* driver specific ops */
 249  249  };
 250  250  
 251  251  static struct modlinkage modlinkage = {
 252  252          MODREV_1,
 253      -        (void *)&ural_modldrv,
 254      -        NULL
      253 +        { (void *)&ural_modldrv, NULL }
 255  254  };
 256  255  
 257  256  static int      ural_m_stat(void *,  uint_t, uint64_t *);
 258  257  static int      ural_m_start(void *);
 259  258  static void     ural_m_stop(void *);
 260  259  static int      ural_m_promisc(void *, boolean_t);
 261  260  static int      ural_m_multicst(void *, boolean_t, const uint8_t *);
 262  261  static int      ural_m_unicst(void *, const uint8_t *);
 263  262  static mblk_t   *ural_m_tx(void *, mblk_t *);
 264  263  static void     ural_m_ioctl(void *, queue_t *, mblk_t *);
↓ open down ↓ 2205 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX